diff --git a/.github/workflows/cleanup-action-caches.yml b/.github/workflows/cleanup-action-caches.yml new file mode 100644 index 00000000..a98ad7c7 --- /dev/null +++ b/.github/workflows/cleanup-action-caches.yml @@ -0,0 +1,33 @@ +name: cleanup gh actions caches +on: + pull_request: + types: + - closed + +jobs: + cleanup: + runs-on: ubuntu-latest + steps: + - name: Check out code + uses: actions/checkout@v3 + + - name: Cleanup + run: | + gh extension install actions/gh-actions-cache + + REPO=${{ github.repository }} + BRANCH="refs/pull/${{ github.event.pull_request.number }}/merge" + + echo "Fetching list of cache key" + cacheKeysForPR=$(gh actions-cache list -R $REPO -B $BRANCH | cut -f 1 ) + + ## Setting this to not fail the workflow while deleting cache keys. + set +e + echo "Deleting caches..." + for cacheKey in $cacheKeysForPR + do + gh actions-cache delete $cacheKey -R $REPO -B $BRANCH --confirm + done + echo "Done" + env: + GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file diff --git a/docs/data-sources/subaccount_service_instance.md b/docs/data-sources/subaccount_service_instance.md new file mode 100644 index 00000000..69419a07 --- /dev/null +++ b/docs/data-sources/subaccount_service_instance.md @@ -0,0 +1,53 @@ +--- +page_title: "btp_subaccount_service_instance Data Source - terraform-provider-btp" +subcategory: "" +description: |- + Gets details about a specific provisioned service instance such as its name, id, platform to which it belongs, the last operation performed, and more. +--- + +# btp_subaccount_service_instance (Data Source) + +Gets details about a specific provisioned service instance such as its name, id, platform to which it belongs, the last operation performed, and more. + +## Example Usage + +```terraform +# look up a service instance by its ID and subaccount ID +data "btp_subaccount_service_instance" "by_id" { + subaccount_id = "6aa64c2f-38c1-49a9-b2e8-cf9fea769b7f" + id = "bc8a216f-1184-49dc-b4b4-17cfe2828965" +} + +# look up a service instance by its name and subaccount ID +data "btp_subaccount_service_instance" "by_name" { + subaccount_id = "6aa64c2f-38c1-49a9-b2e8-cf9fea769b7f" + name = "my-xsuaa-application" +} +``` + + +## Schema + +### Required + +- `subaccount_id` (String) The ID of the subaccount. + +### Optional + +- `id` (String) The ID of the service instance. +- `name` (String) The name of the service instance. + +### Read-Only + +- `context` (Map of String) Contextual data for the resource. +- `created_date` (String) The date and time when the resource was created in [RFC3339](https://www.ietf.org/rfc/rfc3339.txt) format. +- `labels` (Map of Set of String) Set of words or phrases assigned to the service instance. +- `last_modified` (String) The date and time when the resource was last modified in [RFC3339](https://www.ietf.org/rfc/rfc3339.txt) format. +- `parameters` (String) The configuration parameters for the service instance. +- `platform_id` (String) The platform ID. +- `ready` (Boolean) +- `referenced_instance_id` (String) The ID of the instance to which the service instance refers. +- `serviceplan_id` (String) The ID of the service plan. +- `shared` (Boolean) Shows whether the service instance is shared. +- `state` (String) The current state of the service instance. +- `usable` (Boolean) Shows whether the resource can be used. \ No newline at end of file diff --git a/docs/data-sources/subaccount_service_instances.md b/docs/data-sources/subaccount_service_instances.md new file mode 100644 index 00000000..08f5a635 --- /dev/null +++ b/docs/data-sources/subaccount_service_instances.md @@ -0,0 +1,64 @@ +--- +page_title: "btp_subaccount_service_instances Data Source - terraform-provider-btp" +subcategory: "" +description: |- + Gets all service instances in a subaccount. +--- + +# btp_subaccount_service_instances (Data Source) + +Gets all service instances in a subaccount. + +## Example Usage + +```terraform +# look up all available service instances for a given subaccount +data "btp_subaccount_service_instances" "all" { + subaccount_id = "6aa64c2f-38c1-49a9-b2e8-cf9fea769b7f" +} + +# look up all available service instances in a subaccount which are ready to be used +data "btp_subaccount_service_instances" "ready" { + subaccount_id = "6aa64c2f-38c1-49a9-b2e8-cf9fea769b7f" + fields_filter = "ready eq 'true'" +} + +# look up all available service instance in a subaccount which have a certain label assigned +data "btp_subaccount_service_instances" "by_label" { + subaccount_id = "6aa64c2f-38c1-49a9-b2e8-cf9fea769b7f" + labels_filter = "labelname eq 'labelvalue'" +} +``` + + +## Schema + +### Required + +- `subaccount_id` (String) The ID of the subaccount. + +### Optional + +- `fields_filter` (String) Filters the instances based on their fields. For example, to list all instances that are usable, use "usable eq 'true'". +- `labels_filter` (String) Filters the instances based on the label query. For example, to list all instances that are available in a production landscape, use "landscape eq 'production'". + +### Read-Only + +- `id` (String, Deprecated) The ID of the subaccount. +- `values` (Attributes List) (see [below for nested schema](#nestedatt--values)) + + +### Nested Schema for `values` + +Read-Only: + +- `context` (Map of String) Contextual data for the resource. +- `created_date` (String) The date and time when the resource was created in [RFC3339](https://www.ietf.org/rfc/rfc3339.txt) format. +- `id` (String) The ID of the service instance. +- `labels` (Map of Set of String) The set of words or phrases assigned to the service instance. +- `last_modified` (String) The date and time when the resource was last modified in [RFC3339](https://www.ietf.org/rfc/rfc3339.txt) format. +- `name` (String) The name of the service instance. +- `platform_id` (String) The platform ID. +- `ready` (Boolean) +- `serviceplan_id` (String) The ID of the service plan. +- `usable` (Boolean) Shows whether the resource can be used. \ No newline at end of file diff --git a/docs/data-sources/subaccount_service_offering.md b/docs/data-sources/subaccount_service_offering.md new file mode 100644 index 00000000..c6ec7cdc --- /dev/null +++ b/docs/data-sources/subaccount_service_offering.md @@ -0,0 +1,54 @@ +--- +page_title: "btp_subaccount_service_offering Data Source - terraform-provider-btp" +subcategory: "" +description: |- + Gets details about a specific service offering such as its ID, name, description, metadata, the associated service brokers, and more. +--- + +# btp_subaccount_service_offering (Data Source) + +Gets details about a specific service offering such as its ID, name, description, metadata, the associated service brokers, and more. + +## Example Usage + +```terraform +# look up offering by ID and subaccount ID +data "btp_subaccount_service_offering" "by_id" { + subaccount_id = "6aa64c2f-38c1-49a9-b2e8-cf9fea769b7f" + id = "4e953cf1-7eda-4ebb-a58c-02c6ebfe45fb" +} + +# look up offering by offering name and subaccount ID +data "btp_subaccount_service_offering" "by_name" { + subaccount_id = "6aa64c2f-38c1-49a9-b2e8-cf9fea769b7f" + name = "auditlog-management" +} +``` + + +## Schema + +### Required + +- `subaccount_id` (String) The ID of the subaccount. + +### Optional + +- `id` (String) The ID of the service offering. +- `name` (String) The name of the service offering. + +### Read-Only + +- `allow_context_updates` (Boolean) Shows whether the context for the service offering can be updated. +- `bindable` (Boolean) Shows whether the service offering is bindable. +- `bindings_retrievable` (Boolean) Shows whether the bindings associated with the service offering can be retrieved. +- `broker_id` (String) The ID of the broker that provides the service plan. +- `catalog_id` (String) The ID of the service offering as provided by the catalog. +- `catalog_name` (String) The catalog name of the service offering. +- `created_date` (String) The date and time when the resource was created in [RFC3339](https://www.ietf.org/rfc/rfc3339.txt) format. +- `description` (String) The description of the service offering. +- `instances_retrievable` (Boolean) Shows whether the service instances associated with the service offering can be retrieved. +- `last_modified` (String) The date and time when the resource was last modified in [RFC3339](https://www.ietf.org/rfc/rfc3339.txt) format. +- `plan_updateable` (Boolean) Shows whether the offered plan can be updated. +- `ready` (Boolean) Shows whether the service offering is ready to be advertised. +- `tags` (Set of String) The list of tags for the service offering. \ No newline at end of file diff --git a/docs/data-sources/subaccount_service_offerings.md b/docs/data-sources/subaccount_service_offerings.md new file mode 100644 index 00000000..7b8b63a9 --- /dev/null +++ b/docs/data-sources/subaccount_service_offerings.md @@ -0,0 +1,81 @@ +--- +page_title: "btp_subaccount_service_offerings Data Source - terraform-provider-btp" +subcategory: "" +description: |- + Lists the services your subaccount is entitled to use in your runtime environment. +--- + +# btp_subaccount_service_offerings (Data Source) + +Lists the services your subaccount is entitled to use in your runtime environment. + +## Example Usage + +```terraform +# look up all service offerings in a given subaccount +data "btp_subaccount_service_offerings" "all" { + subaccount_id = "6aa64c2f-38c1-49a9-b2e8-cf9fea769b7f" +} + +# look up services offerings available on sapbtp environment in a given subaccount +data "btp_subaccount_service_offerings" "sapbtp" { + subaccount_id = "6aa64c2f-38c1-49a9-b2e8-cf9fea769b7f" + environment = "sapbtp" +} + +# look up services offerings available on kubernetes environment in a given subaccount +data "btp_subaccount_service_offerings" "k8s" { + subaccount_id = "6aa64c2f-38c1-49a9-b2e8-cf9fea769b7f" + environment = "kubernetes" +} + +# look up services offerings wich have a specifc label assigned in a given subaccount +data "btp_subaccount_service_offerings" "labeled" { + subaccount_id = "6aa64c2f-38c1-49a9-b2e8-cf9fea769b7f" + labels_filter = "a_label eq 'label-value'" +} +``` + + +## Schema + +### Required + +- `subaccount_id` (String) The ID of the subaccount. + +### Optional + +- `environment` (String) Lists services to be consumed in a Cloud Foundry or Kubernetes-native way. Valid values are: + + | value | description | + | --- | --- | + | cloudfoundry | Cloud Foundry | + | kubernetes | Kubernetes | +- `fields_filter` (String) Filters the response based on the field query. For example, use "name eq 'my service offering name'". +- `labels_filter` (String) Filters the response based on the label query. For example, to list all the service offerings associated with the testing environment, use "environment eq 'test'". + +### Read-Only + +- `id` (String, Deprecated) The ID of the subaccount. +- `values` (Attributes List) (see [below for nested schema](#nestedatt--values)) + + +### Nested Schema for `values` + +Read-Only: + +- `allow_context_updates` (Boolean) Shows whether the context for the service offering can be updated. +- `bindable` (Boolean) Shows whether the service offering is bindable. +- `bindings_retrievable` (Boolean) Shows whether the bindings associated with the service offering can be retrieved. +- `broker_id` (String) The ID of the broker that provides the service plan. +- `catalog_id` (String) The ID of the service offering as provided by the catalog. +- `catalog_name` (String) The catalog name of the service offering. +- `created_date` (String) The date and time when the resource was created in [RFC3339](https://www.ietf.org/rfc/rfc3339.txt) format. +- `description` (String) The description of the service offering. +- `id` (String) The ID of the service offering. +- `instances_retrievable` (Boolean) Shows whether the service instances associated with the service offering can be retrieved. +- `last_modified` (String) The date and time when the resource was last modified in [RFC3339](https://www.ietf.org/rfc/rfc3339.txt) format. +- `name` (String) The name of the service offering. +- `plan_updateable` (Boolean) Shows whether the offered plan can be updated. +- `ready` (Boolean) Shows whether the service offering is ready to be advertised. +- `tags` (Set of String) The list of tags for the service offering. \ No newline at end of file diff --git a/docs/data-sources/subaccount_service_plan.md b/docs/data-sources/subaccount_service_plan.md new file mode 100644 index 00000000..a0f6f536 --- /dev/null +++ b/docs/data-sources/subaccount_service_plan.md @@ -0,0 +1,52 @@ +--- +page_title: "btp_subaccount_service_plan Data Source - terraform-provider-btp" +subcategory: "" +description: |- + Gets details about a specific service plan such as its name, description, metadata, and more. +--- + +# btp_subaccount_service_plan (Data Source) + +Gets details about a specific service plan such as its name, description, metadata, and more. + +## Example Usage + +```terraform +# look up a sercvice plan by ID and subaccount ID +data "btp_subaccount_service_plan" "by_id" { + subaccount_id = "6aa64c2f-38c1-49a9-b2e8-cf9fea769b7f" + id = "b50d1b0b-2059-4f21-a014-2ea87752eb48" +} + +# look up a sercvice plan by plan name and offering name and subaccount ID +data "btp_subaccount_service_plan" "by_name" { + subaccount_id = "6aa64c2f-38c1-49a9-b2e8-cf9fea769b7f" + name = "free" + offering_name = "alert-notification" +} +``` + + +## Schema + +### Required + +- `subaccount_id` (String) The ID of the subaccount. + +### Optional + +- `id` (String) The ID of the service plan. +- `name` (String) The name of the service plan. +- `offering_name` (String) The name of the service offering of the plan. + +### Read-Only + +- `bindable` (Boolean) Shows whether the service plan is bindable. +- `catalog_id` (String) The ID of the service plan in the service broker catalog. +- `catalog_name` (String) The name of the associated service broker catalog. +- `created_date` (String) The date and time when the resource was created in [RFC3339](https://www.ietf.org/rfc/rfc3339.txt) format. +- `description` (String) The description of the service plan. +- `free` (Boolean) Shows whether the service plan is free. +- `last_modified` (String) The date and time when the resource was last modified in [RFC3339](https://www.ietf.org/rfc/rfc3339.txt) format. +- `ready` (Boolean) Shows whether the service plan is ready. +- `serviceoffering_id` (String) The ID of the service offering. \ No newline at end of file diff --git a/docs/data-sources/subaccount_service_plans.md b/docs/data-sources/subaccount_service_plans.md new file mode 100644 index 00000000..2c4e7984 --- /dev/null +++ b/docs/data-sources/subaccount_service_plans.md @@ -0,0 +1,72 @@ +--- +page_title: "btp_subaccount_service_plans Data Source - terraform-provider-btp" +subcategory: "" +description: |- + Lists the plans of services that your subaccount is entitled to use in your environment. +--- + +# btp_subaccount_service_plans (Data Source) + +Lists the plans of services that your subaccount is entitled to use in your environment. + +## Example Usage + +```terraform +# look up all service plans of a given subaccount +data "btp_subaccount_service_plans" "all" { + subaccount_id = "6aa64c2f-38c1-49a9-b2e8-cf9fea769b7f" +} + +# look up all services available on sapbtp environment in a given subaccount +data "btp_subaccount_service_plans" "sapbtp" { + subaccount_id = "6aa64c2f-38c1-49a9-b2e8-cf9fea769b7f" + environment = "sapbtp" +} + +# look up all services available on kubernetes environment in a given subaccount +data "btp_subaccount_service_plans" "k8s" { + subaccount_id = "6aa64c2f-38c1-49a9-b2e8-cf9fea769b7f" + environment = "kubernetes" +} + +# look up all services wich have certain label assigned in a given subaccount +data "btp_subaccount_service_plans" "labeled" { + subaccount_id = "6aa64c2f-38c1-49a9-b2e8-cf9fea769b7f" + labels_filter = "commercial_name eq 'application'" +} +``` + + +## Schema + +### Required + +- `subaccount_id` (String) The ID of the subaccount. + +### Optional + +- `environment` (String) Filter the response on the environment (sapbtp, kubernetes, cloudfoundry). +- `fields_filter` (String) Filters the response based on the field query. +- `labels_filter` (String) Filters the response based on the labels query. + +### Read-Only + +- `id` (String, Deprecated) The ID of the subaccount. +- `values` (Attributes List) (see [below for nested schema](#nestedatt--values)) + + +### Nested Schema for `values` + +Read-Only: + +- `bindable` (Boolean) Shows whether the service plan is bindable. +- `catalog_id` (String) The ID of the service plan in the service broker catalog. +- `catalog_name` (String) The name of the associated service broker catalog. +- `created_date` (String) The date and time when the resource was created in [RFC3339](https://www.ietf.org/rfc/rfc3339.txt) format. +- `description` (String) The description of the service plan. +- `free` (Boolean) Shows whether the service plan is free. +- `id` (String) The ID of the service plan. +- `last_modified` (String) The date and time when the resource was last modified in [RFC3339](https://www.ietf.org/rfc/rfc3339.txt) format. +- `name` (String) The name of the service plan. +- `ready` (Boolean) Shows whether the service plan is ready. +- `serviceoffering_id` (String) The ID of the service offering. \ No newline at end of file diff --git a/docs/resources/globalaccount_role_collection.md b/docs/resources/globalaccount_role_collection.md index d70ab6d2..f6bfa314 100644 --- a/docs/resources/globalaccount_role_collection.md +++ b/docs/resources/globalaccount_role_collection.md @@ -56,4 +56,12 @@ Required: - `role_template_app_id` (String) The name of the referenced template app id. - `role_template_name` (String) The name of the referenced role template. +## Import +Import is supported using the following syntax: + +```terraform +# terraform import btp_globalaccount_role_collection. '' + +terraform import btp_globalaccount_role_collection.globalaccount_viewer 'Global Account Viewer' +``` diff --git a/examples/resources/btp_globalaccount_role/import.sh b/examples/resources/btp_globalaccount_role/import.sh new file mode 100644 index 00000000..d6645eb3 --- /dev/null +++ b/examples/resources/btp_globalaccount_role/import.sh @@ -0,0 +1,3 @@ +# terraform import btp_globalaccount_role. ',,' + +terraform import btp_globalaccount_role.globalaccount_auditor 'User and Role Auditor,xsuaa_auditor,xsuaa!t2' \ No newline at end of file diff --git a/examples/resources/btp_globalaccount_role_collection/import.sh b/examples/resources/btp_globalaccount_role_collection/import.sh new file mode 100644 index 00000000..19b1c483 --- /dev/null +++ b/examples/resources/btp_globalaccount_role_collection/import.sh @@ -0,0 +1,3 @@ +# terraform import btp_globalaccount_role_collection. '' + +terraform import btp_globalaccount_role_collection.globalaccount_viewer 'Global Account Viewer' \ No newline at end of file diff --git a/internal/btpcli/facade_accounts_directory.go b/internal/btpcli/facade_accounts_directory.go index 8c01dea6..04a26484 100644 --- a/internal/btpcli/facade_accounts_directory.go +++ b/internal/btpcli/facade_accounts_directory.go @@ -27,25 +27,47 @@ func (f *accountsDirectoryFacade) Get(ctx context.Context, directoryId string) ( } type DirectoryCreateInput struct { - DisplayName string `btpcli:"displayName"` - Description *string `btpcli:"description"` - ParentID *string `btpcli:"parentID"` - Subdomain *string `btpcli:"subdomain"` - Labels map[string][]string `btpcli:"labels"` + DisplayName string `btpcli:"displayName"` + Description *string `btpcli:"description"` + ParentID *string `btpcli:"parentID"` + Subdomain *string `btpcli:"subdomain"` + Labels map[string][]string `btpcli:"labels"` + Globalaccount string `btpcli:"globalAccount"` + //DirectoryAdmins string `btpcli:"directoryAdmins"` +} + +type DirectoryUpdateInput struct { + DirectoryId string `btpcli:"directoryID"` + Globalaccount string `btpcli:"globalAccount"` + DisplayName *string `btpcli:"displayName"` + Description *string `btpcli:"description"` + Labels map[string][]string `btpcli:"labels"` } func (f *accountsDirectoryFacade) Create(ctx context.Context, args *DirectoryCreateInput) (cis.DirectoryResponseObject, CommandResponse, error) { + args.Globalaccount = f.cliClient.GetGlobalAccountSubdomain() + params, err := tfutils.ToBTPCLIParamsMap(args) if err != nil { return cis.DirectoryResponseObject{}, CommandResponse{}, err } - params["globalAccount"] = f.cliClient.GetGlobalAccountSubdomain() - return doExecute[cis.DirectoryResponseObject](f.cliClient, ctx, NewCreateRequest(f.getCommand(), params)) } +func (f *accountsDirectoryFacade) Update(ctx context.Context, args *DirectoryUpdateInput) (cis.DirectoryResponseObject, CommandResponse, error) { + args.Globalaccount = f.cliClient.GetGlobalAccountSubdomain() + + params, err := tfutils.ToBTPCLIParamsMap(args) + + if err != nil { + return cis.DirectoryResponseObject{}, CommandResponse{}, err + } + + return doExecute[cis.DirectoryResponseObject](f.cliClient, ctx, NewUpdateRequest(f.getCommand(), params)) +} + func (f *accountsDirectoryFacade) Delete(ctx context.Context, directoryId string) (cis.DirectoryResponseObject, CommandResponse, error) { return doExecute[cis.DirectoryResponseObject](f.cliClient, ctx, NewDeleteRequest(f.getCommand(), map[string]string{ "globalAccount": f.cliClient.GetGlobalAccountSubdomain(), diff --git a/internal/btpcli/facade_accounts_directory_test.go b/internal/btpcli/facade_accounts_directory_test.go index 35af7c6d..df6cbc14 100644 --- a/internal/btpcli/facade_accounts_directory_test.go +++ b/internal/btpcli/facade_accounts_directory_test.go @@ -34,6 +34,7 @@ func TestAccountsDirectoryFacade_Get(t *testing.T) { func TestAccountsDirectoryFacade_Create(t *testing.T) { command := "accounts/directory" + globalAccount := "795b53bb-a3f0-4769-adf0-26173282a975" displayName := "my-directory" description := "a description" @@ -47,14 +48,14 @@ func TestAccountsDirectoryFacade_Create(t *testing.T) { srvCalled = true assertCall(t, r, command, ActionCreate, map[string]string{ - "globalAccount": "795b53bb-a3f0-4769-adf0-26173282a975", - "displayName": "my-directory", + "globalAccount": globalAccount, + "displayName": displayName, }) })) defer srv.Close() _, res, err := uut.Accounts.Directory.Create(context.TODO(), &DirectoryCreateInput{ - DisplayName: "my-directory", + DisplayName: displayName, }) if assert.True(t, srvCalled) && assert.NoError(t, err) { @@ -68,11 +69,12 @@ func TestAccountsDirectoryFacade_Create(t *testing.T) { srvCalled = true assertCall(t, r, command, ActionCreate, map[string]string{ - "globalAccount": "795b53bb-a3f0-4769-adf0-26173282a975", + "globalAccount": globalAccount, "displayName": displayName, "description": description, "subdomain": subdomain, "parentID": parentId, + "labels": "{}", }) })) defer srv.Close() @@ -82,6 +84,45 @@ func TestAccountsDirectoryFacade_Create(t *testing.T) { Description: &description, Subdomain: &subdomain, ParentID: &parentId, + Labels: map[string][]string{}, + }) + + if assert.True(t, srvCalled) && assert.NoError(t, err) { + assert.Equal(t, 200, res.StatusCode) + } + }) +} + +func TestAccountsDirectoryFacade_Update(t *testing.T) { + command := "accounts/directory" + globalAccount := "795b53bb-a3f0-4769-adf0-26173282a975" + + directoryId := "6aa64c2f-38c1-49a9-b2e8-cf9fea769b7f" + displayName := "my-directory" + description := "a description" + + t.Run("constructs the CLI params correctly", func(t *testing.T) { + var srvCalled bool + + uut, srv := prepareClientFacadeForTest(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { + srvCalled = true + + assertCall(t, r, command, ActionUpdate, map[string]string{ + "globalAccount": globalAccount, + "directoryID": directoryId, + "displayName": displayName, + "description": description, + "labels": "{}", + }) + + })) + defer srv.Close() + + _, res, err := uut.Accounts.Directory.Update(context.TODO(), &DirectoryUpdateInput{ + DirectoryId: directoryId, + DisplayName: &displayName, + Description: &description, + Labels: map[string][]string{}, }) if assert.True(t, srvCalled) && assert.NoError(t, err) { diff --git a/internal/provider/datasource_subaccount_service_instance_test.go b/internal/provider/datasource_subaccount_service_instance_test.go new file mode 100644 index 00000000..c044282c --- /dev/null +++ b/internal/provider/datasource_subaccount_service_instance_test.go @@ -0,0 +1,126 @@ +package provider + +import ( + "fmt" + "regexp" + "testing" + + "github.com/hashicorp/terraform-plugin-testing/helper/resource" +) + +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") + defer stopQuietly(rec) + + resource.Test(t, resource.TestCase{ + IsUnitTest: true, + ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), + Steps: []resource.TestStep{ + { + Config: hclProvider() + 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"), + resource.TestCheckResourceAttr("data.btp_subaccount_service_instance.uut", "name", "tf-testacc-alertnotification-instance"), + resource.TestCheckResourceAttr("data.btp_subaccount_service_instance.uut", "ready", "true"), + resource.TestCheckResourceAttr("data.btp_subaccount_service_instance.uut", "serviceplan_id", "f0aac855-474d-4016-9529-61c062efbc7c"), + resource.TestCheckResourceAttr("data.btp_subaccount_service_instance.uut", "platform_id", "service-manager"), + resource.TestCheckResourceAttr("data.btp_subaccount_service_instance.uut", "usable", "true"), + resource.TestMatchResourceAttr("data.btp_subaccount_service_instance.uut", "created_date", regexpValidRFC3999Format), + resource.TestMatchResourceAttr("data.btp_subaccount_service_instance.uut", "last_modified", regexpValidRFC3999Format), + ), + }, + }, + }) + }) + t.Run("happy path - service instance by name", func(t *testing.T) { + rec := setupVCR(t, "fixtures/datasource_subaccount_service_instance_by_name") + defer stopQuietly(rec) + + resource.Test(t, resource.TestCase{ + IsUnitTest: true, + ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), + Steps: []resource.TestStep{ + { + Config: hclProvider() + 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"), + resource.TestCheckResourceAttr("data.btp_subaccount_service_instance.uut", "name", "tf-testacc-alertnotification-instance"), + resource.TestCheckResourceAttr("data.btp_subaccount_service_instance.uut", "ready", "true"), + resource.TestCheckResourceAttr("data.btp_subaccount_service_instance.uut", "serviceplan_id", "f0aac855-474d-4016-9529-61c062efbc7c"), + resource.TestCheckResourceAttr("data.btp_subaccount_service_instance.uut", "platform_id", "service-manager"), + resource.TestCheckResourceAttr("data.btp_subaccount_service_instance.uut", "usable", "true"), + resource.TestMatchResourceAttr("data.btp_subaccount_service_instance.uut", "created_date", regexpValidRFC3999Format), + resource.TestMatchResourceAttr("data.btp_subaccount_service_instance.uut", "last_modified", regexpValidRFC3999Format), + ), + }, + }, + }) + }) + + t.Run("error path - specify ID and name", func(t *testing.T) { + resource.Test(t, resource.TestCase{ + IsUnitTest: true, + ProtoV6ProviderFactories: getProviders(nil), + Steps: []resource.TestStep{ + { + Config: hclProvider() + hclDatasourceSubaccountServiceInstanceIdName("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5", "59cd458e-e66e-4b60-b6d8-8f219379f9a5", "tf-testacc-alertnotification-instance"), + ExpectError: regexp.MustCompile(`Error: Invalid Attribute Combination`), + }, + }, + }) + }) + + t.Run("error path - subaccount id mandatory", func(t *testing.T) { + resource.Test(t, resource.TestCase{ + IsUnitTest: true, + ProtoV6ProviderFactories: getProviders(nil), + Steps: []resource.TestStep{ + { + Config: hclProvider() + hclDatasourceSubaccountServiceInstanceWoSubaccount("uut", "lite"), + ExpectError: regexp.MustCompile(`The argument "subaccount_id" is required, but no definition was found.`), + }, + }, + }) + }) +} + +func hclDatasourceSubaccountServiceInstanceById(resourceName string, subaccountId string, serviceId string) string { + template := ` +data "btp_subaccount_service_instance" "%s" { + subaccount_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" { + subaccount_id = "%s" + name = "%s" +}` + return fmt.Sprintf(template, resourceName, subaccountId, serviceName) +} + +func hclDatasourceSubaccountServiceInstanceIdName(resourceName string, subaccountId string, serviceId string, serviceName string) string { + template := ` +data "btp_subaccount_service_instance" "%s" { + subaccount_id = "%s" + id = "%s" + name = "%s" +}` + return fmt.Sprintf(template, resourceName, subaccountId, serviceId, serviceName) +} + +func hclDatasourceSubaccountServiceInstanceWoSubaccount(resourceName string, serviceName string) string { + template := ` +data "btp_subaccount_service_instance" "%s" { + name = "%s" +}` + return fmt.Sprintf(template, resourceName, serviceName) +} diff --git a/internal/provider/datasource_subaccount_service_instances.go b/internal/provider/datasource_subaccount_service_instances.go index 0fed8ff2..abe36351 100644 --- a/internal/provider/datasource_subaccount_service_instances.go +++ b/internal/provider/datasource_subaccount_service_instances.go @@ -34,6 +34,7 @@ type subaccountServiceInstancesValueConfig struct { type subaccountServiceInstancesDataSourceConfig struct { /* INPUT */ SubaccountId types.String `tfsdk:"subaccount_id"` + Id types.String `tfsdk:"id"` FieldsFilter types.String `tfsdk:"fields_filter"` LabelsFilter types.String `tfsdk:"labels_filter"` /* OUTPUT */ @@ -67,6 +68,11 @@ func (ds *subaccountServiceInstancesDataSource) Schema(_ context.Context, _ data uuidvalidator.ValidUUID(), }, }, + "id": schema.StringAttribute{ // required hashicorps terraform plugin testing framework + DeprecationMessage: "Use the `subaccount_id` attribute instead", + MarkdownDescription: "The ID of the subaccount.", + Computed: true, + }, "fields_filter": schema.StringAttribute{ MarkdownDescription: "Filters the instances based on their fields. For example, to list all instances that are usable, use \"usable eq 'true'\".", Optional: true, @@ -160,6 +166,7 @@ func (ds *subaccountServiceInstancesDataSource) Read(ctx context.Context, req da return } + data.Id = data.SubaccountId data.Values = []subaccountServiceInstancesValueConfig{} for _, serviceInstance := range cliRes { val := subaccountServiceInstancesValueConfig{ diff --git a/internal/provider/datasource_subaccount_service_instances_test.go b/internal/provider/datasource_subaccount_service_instances_test.go new file mode 100644 index 00000000..5b8c0932 --- /dev/null +++ b/internal/provider/datasource_subaccount_service_instances_test.go @@ -0,0 +1,143 @@ +package provider + +import ( + "fmt" + "regexp" + "testing" + + "github.com/hashicorp/terraform-plugin-testing/helper/resource" +) + +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") + defer stopQuietly(rec) + + resource.Test(t, resource.TestCase{ + IsUnitTest: true, + ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), + Steps: []resource.TestStep{ + { + Config: hclProvider() + 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"), + ), + }, + }, + }) + }) + + t.Run("happy path - service instances for subaccount with fields filter", func(t *testing.T) { + rec := setupVCR(t, "fixtures/datasource_subaccount_service_instances_namefilter") + defer stopQuietly(rec) + + resource.Test(t, resource.TestCase{ + IsUnitTest: true, + ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), + Steps: []resource.TestStep{ + { + Config: hclProvider() + 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"), + ), + }, + }, + }) + }) + + 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") + defer stopQuietly(rec) + + resource.Test(t, resource.TestCase{ + IsUnitTest: true, + ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), + Steps: []resource.TestStep{ + { + Config: hclProvider() + 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"), + ), + }, + }, + }) + }) + + t.Run("happy path - service instances for subaccount with labels filter", func(t *testing.T) { + rec := setupVCR(t, "fixtures/datasource_subaccount_service_instances_labelsfilter") + defer stopQuietly(rec) + + resource.Test(t, resource.TestCase{ + IsUnitTest: true, + ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), + Steps: []resource.TestStep{ + { + Config: hclProvider() + 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"), + ), + }, + }, + }) + }) + t.Run("error path - subaccount_id mandatory", func(t *testing.T) { + resource.Test(t, resource.TestCase{ + IsUnitTest: true, + ProtoV6ProviderFactories: getProviders(nil), + Steps: []resource.TestStep{ + { + Config: hclProvider() + `data "btp_subaccount_service_instances" "uut" {}`, + ExpectError: regexp.MustCompile(`The argument "subaccount_id" is required, but no definition was found`), + }, + }, + }) + }) + + t.Run("error path - subaccount_id not a valid UUID", func(t *testing.T) { + resource.Test(t, resource.TestCase{ + IsUnitTest: true, + ProtoV6ProviderFactories: getProviders(nil), + Steps: []resource.TestStep{ + { + Config: hclProvider() + 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`), + }, + }, + }) + }) + +} + +func hclDatasourceSubaccountServiceInstanceBySubaccount(resourceName string, subaccountId string) string { + template := ` +data "btp_subaccount_service_instances" "%s" { + subaccount_id = "%s" +}` + + return fmt.Sprintf(template, resourceName, subaccountId) +} + +func hclDatasourceSubaccountInstancesBySubaccountAndFields(resourceName string, subaccountId string, usable string) string { + template := ` +data "btp_subaccount_service_instances" "%s" { + subaccount_id = "%s" + fields_filter = "usable eq '%s'" +}` + + return fmt.Sprintf(template, resourceName, subaccountId, usable) +} + +func hclDatasourceSubaccountInstancesBySubaccountAndLabels(resourceName string, subaccountId string) string { + template := ` +data "btp_subaccount_service_instances" "%s" { + subaccount_id = "%s" + labels_filter = "org eq 'testvalue'" +}` + + return fmt.Sprintf(template, resourceName, subaccountId) +} diff --git a/internal/provider/datasource_subaccount_service_offering_test.go b/internal/provider/datasource_subaccount_service_offering_test.go new file mode 100644 index 00000000..138dea0f --- /dev/null +++ b/internal/provider/datasource_subaccount_service_offering_test.go @@ -0,0 +1,131 @@ +package provider + +import ( + "fmt" + "regexp" + "testing" + + "github.com/hashicorp/terraform-plugin-testing/helper/resource" +) + +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") + defer stopQuietly(rec) + + resource.Test(t, resource.TestCase{ + IsUnitTest: true, + ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), + Steps: []resource.TestStep{ + { + Config: hclProvider() + 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"), + resource.TestCheckResourceAttr("data.btp_subaccount_service_offering.uut", "name", "xsuaa"), + resource.TestCheckResourceAttr("data.btp_subaccount_service_offering.uut", "ready", "true"), + resource.TestCheckResourceAttr("data.btp_subaccount_service_offering.uut", "bindable", "true"), + resource.TestCheckResourceAttr("data.btp_subaccount_service_offering.uut", "instances_retrievable", "false"), + resource.TestCheckResourceAttr("data.btp_subaccount_service_offering.uut", "bindings_retrievable", "false"), + resource.TestCheckResourceAttr("data.btp_subaccount_service_offering.uut", "plan_updateable", "false"), + resource.TestCheckResourceAttr("data.btp_subaccount_service_offering.uut", "allow_context_updates", "false"), + resource.TestMatchResourceAttr("data.btp_subaccount_service_offering.uut", "created_date", regexpValidRFC3999Format), + resource.TestMatchResourceAttr("data.btp_subaccount_service_offering.uut", "last_modified", regexpValidRFC3999Format), + ), + }, + }, + }) + }) + t.Run("happy path service offering by name", func(t *testing.T) { + rec := setupVCR(t, "fixtures/datasource_subaccount_service_offering_by_name") + defer stopQuietly(rec) + + resource.Test(t, resource.TestCase{ + IsUnitTest: true, + ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), + Steps: []resource.TestStep{ + { + Config: hclProvider() + 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"), + resource.TestCheckResourceAttr("data.btp_subaccount_service_offering.uut", "name", "xsuaa"), + resource.TestCheckResourceAttr("data.btp_subaccount_service_offering.uut", "ready", "true"), + resource.TestCheckResourceAttr("data.btp_subaccount_service_offering.uut", "bindable", "true"), + resource.TestCheckResourceAttr("data.btp_subaccount_service_offering.uut", "instances_retrievable", "false"), + resource.TestCheckResourceAttr("data.btp_subaccount_service_offering.uut", "bindings_retrievable", "false"), + resource.TestCheckResourceAttr("data.btp_subaccount_service_offering.uut", "plan_updateable", "false"), + resource.TestCheckResourceAttr("data.btp_subaccount_service_offering.uut", "allow_context_updates", "false"), + resource.TestMatchResourceAttr("data.btp_subaccount_service_offering.uut", "created_date", regexpValidRFC3999Format), + resource.TestMatchResourceAttr("data.btp_subaccount_service_offering.uut", "last_modified", regexpValidRFC3999Format), + ), + }, + }, + }) + }) + + t.Run("error path - specify ID and name", func(t *testing.T) { + resource.Test(t, resource.TestCase{ + IsUnitTest: true, + ProtoV6ProviderFactories: getProviders(nil), + Steps: []resource.TestStep{ + { + Config: hclProvider() + hclDatasourceSubaccountServiceOfferingIdName("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5", "59cd458e-e66e-4b60-b6d8-8f219379f9a5", "standard"), + ExpectError: regexp.MustCompile(`Error: Invalid Attribute Combination`), + }, + }, + }) + }) + + t.Run("error path - subaccount id mandatory", func(t *testing.T) { + resource.Test(t, resource.TestCase{ + IsUnitTest: true, + ProtoV6ProviderFactories: getProviders(nil), + Steps: []resource.TestStep{ + { + Config: hclProvider() + hclDatasourceSubaccountOfferingWoSubaccount("uut", "lite"), + ExpectError: regexp.MustCompile(`The argument "subaccount_id" is required, but no definition was found.`), + }, + }, + }) + }) + +} + +func hclDatasourceSubaccountOfferingById(resourceName string, subaccountId string, offeringId string) string { + template := ` +data "btp_subaccount_service_offering" "%s" { + subaccount_id = "%s" + id = "%s" +}` + + return fmt.Sprintf(template, resourceName, subaccountId, offeringId) +} + +func hclDatasourceSubaccountOfferingByName(resourceName string, subaccountId string, offeringName string) string { + template := ` +data "btp_subaccount_service_offering" "%s" { + subaccount_id = "%s" + name = "%s" +}` + return fmt.Sprintf(template, resourceName, subaccountId, offeringName) +} + +func hclDatasourceSubaccountServiceOfferingIdName(resourceName string, subaccountId string, offeringId string, offeringName string) string { + template := ` +data "btp_subaccount_service_offering" "%s" { + subaccount_id = "%s" + id = "%s" + name = "%s" +}` + return fmt.Sprintf(template, resourceName, subaccountId, offeringId, offeringName) +} + +func hclDatasourceSubaccountOfferingWoSubaccount(resourceName string, offeringName string) string { + template := ` +data "btp_subaccount_service_offering" "%s" { + offering_name = "%s" +}` + return fmt.Sprintf(template, resourceName, offeringName) +} diff --git a/internal/provider/datasource_subaccount_service_offerings.go b/internal/provider/datasource_subaccount_service_offerings.go index c94816a3..07ef0ac3 100644 --- a/internal/provider/datasource_subaccount_service_offerings.go +++ b/internal/provider/datasource_subaccount_service_offerings.go @@ -38,6 +38,7 @@ type subaccountServiceOfferingValue struct { type subaccountServiceOfferingsDataSourceConfig struct { /* INPUT */ SubaccountId types.String `tfsdk:"subaccount_id"` + Id types.String `tfsdk:"id"` Environment types.String `tfsdk:"environment"` FieldsFilter types.String `tfsdk:"fields_filter"` LabelsFilter types.String `tfsdk:"labels_filter"` @@ -72,6 +73,11 @@ func (ds *subaccountServiceOfferingsDataSource) Schema(_ context.Context, _ data uuidvalidator.ValidUUID(), }, }, + "id": schema.StringAttribute{ // required hashicorps terraform plugin testing framework + DeprecationMessage: "Use the `subaccount_id` attribute instead", + MarkdownDescription: "The ID of the subaccount.", + Computed: true, + }, "environment": schema.StringAttribute{ MarkdownDescription: "Lists services to be consumed in a Cloud Foundry or Kubernetes-native way. Valid values are: \n " + getFormattedValueAsTableRow("value", "description") + @@ -187,7 +193,9 @@ func (ds *subaccountServiceOfferingsDataSource) Read(ctx context.Context, req da return } + data.Id = data.SubaccountId data.Values = []subaccountServiceOfferingValue{} + for _, offering := range cliRes { offeringValue := subaccountServiceOfferingValue{ Id: types.StringValue(offering.Id), diff --git a/internal/provider/datasource_subaccount_service_offerings_test.go b/internal/provider/datasource_subaccount_service_offerings_test.go new file mode 100644 index 00000000..1d8a03b5 --- /dev/null +++ b/internal/provider/datasource_subaccount_service_offerings_test.go @@ -0,0 +1,124 @@ +package provider + +import ( + "fmt" + "regexp" + "testing" + + "github.com/hashicorp/terraform-plugin-testing/helper/resource" +) + +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") + defer stopQuietly(rec) + + resource.Test(t, resource.TestCase{ + IsUnitTest: true, + ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), + Steps: []resource.TestStep{ + { + Config: hclProvider() + 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"), + ), + }, + }, + }) + }) + + t.Run("happy path - service offerings for subaccount and environment", func(t *testing.T) { + rec := setupVCR(t, "fixtures/datasource_subaccount_service_offerings_by_environment") + defer stopQuietly(rec) + + resource.Test(t, resource.TestCase{ + IsUnitTest: true, + ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), + Steps: []resource.TestStep{ + { + Config: hclProvider() + 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"), + ), + }, + }, + }) + }) + + t.Run("happy path - service plans for subaccount with fields filter", func(t *testing.T) { + rec := setupVCR(t, "fixtures/datasource_subaccount_service_offerings_namefilter") + defer stopQuietly(rec) + + resource.Test(t, resource.TestCase{ + IsUnitTest: true, + ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), + Steps: []resource.TestStep{ + { + Config: hclProvider() + 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"), + ), + }, + }, + }) + }) + + t.Run("error path - subaccount_id mandatory", func(t *testing.T) { + resource.Test(t, resource.TestCase{ + IsUnitTest: true, + ProtoV6ProviderFactories: getProviders(nil), + Steps: []resource.TestStep{ + { + Config: hclProvider() + `data "btp_subaccount_service_offerings" "uut" {}`, + ExpectError: regexp.MustCompile(`The argument "subaccount_id" is required, but no definition was found`), + }, + }, + }) + }) + t.Run("error path - subaccount_id not a valid UUID", func(t *testing.T) { + resource.Test(t, resource.TestCase{ + IsUnitTest: true, + ProtoV6ProviderFactories: getProviders(nil), + Steps: []resource.TestStep{ + { + Config: hclProvider() + 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`), + }, + }, + }) + }) + +} + +func hclDatasourceSubaccountOfferingsBySubaccount(resourceName string, subaccountId string) string { + template := ` +data "btp_subaccount_service_offerings" "%s" { + subaccount_id = "%s" +}` + + return fmt.Sprintf(template, resourceName, subaccountId) +} + +func hclDatasourceSubaccountOfferingsBySubaccountAndEnvironment(resourceName string, subaccountId string) string { + template := ` +data "btp_subaccount_service_offerings" "%s" { + subaccount_id = "%s" + environment = "cloudfoundry" +}` + + return fmt.Sprintf(template, resourceName, subaccountId) +} + +func hclDatasourceSubaccountOfferingsBySubaccountAndFields(resourceName string, subaccountId string) string { + template := ` +data "btp_subaccount_service_offerings" "%s" { + subaccount_id = "%s" + fields_filter = "name eq 'html5-apps-repo'" +}` + + return fmt.Sprintf(template, resourceName, subaccountId) +} diff --git a/internal/provider/datasource_subaccount_service_plan_test.go b/internal/provider/datasource_subaccount_service_plan_test.go new file mode 100644 index 00000000..05053eaa --- /dev/null +++ b/internal/provider/datasource_subaccount_service_plan_test.go @@ -0,0 +1,126 @@ +package provider + +import ( + "fmt" + "regexp" + "testing" + + "github.com/hashicorp/terraform-plugin-testing/helper/resource" +) + +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") + defer stopQuietly(rec) + + resource.Test(t, resource.TestCase{ + IsUnitTest: true, + ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), + Steps: []resource.TestStep{ + { + Config: hclProvider() + 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"), + resource.TestCheckResourceAttr("data.btp_subaccount_service_plan.uut", "name", "lite"), + resource.TestCheckResourceAttr("data.btp_subaccount_service_plan.uut", "ready", "true"), + resource.TestCheckResourceAttr("data.btp_subaccount_service_plan.uut", "catalog_name", "lite"), + resource.TestCheckResourceAttr("data.btp_subaccount_service_plan.uut", "free", "true"), + resource.TestMatchResourceAttr("data.btp_subaccount_service_plan.uut", "created_date", regexpValidRFC3999Format), + resource.TestMatchResourceAttr("data.btp_subaccount_service_plan.uut", "last_modified", regexpValidRFC3999Format), + ), + }, + }, + }) + }) + t.Run("happy path service plan by name", func(t *testing.T) { + rec := setupVCR(t, "fixtures/datasource_subaccount_service_plan_by_name") + defer stopQuietly(rec) + + resource.Test(t, resource.TestCase{ + IsUnitTest: true, + ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), + Steps: []resource.TestStep{ + { + Config: hclProvider() + 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"), + resource.TestCheckResourceAttr("data.btp_subaccount_service_plan.uut", "name", "lite"), + resource.TestCheckResourceAttr("data.btp_subaccount_service_plan.uut", "ready", "true"), + resource.TestCheckResourceAttr("data.btp_subaccount_service_plan.uut", "catalog_name", "lite"), + resource.TestCheckResourceAttr("data.btp_subaccount_service_plan.uut", "free", "true"), + resource.TestMatchResourceAttr("data.btp_subaccount_service_plan.uut", "created_date", regexpValidRFC3999Format), + resource.TestMatchResourceAttr("data.btp_subaccount_service_plan.uut", "last_modified", regexpValidRFC3999Format), + ), + }, + }, + }) + }) + + t.Run("error path - offering name mandatory in case of name", func(t *testing.T) { + resource.Test(t, resource.TestCase{ + IsUnitTest: true, + ProtoV6ProviderFactories: getProviders(nil), + Steps: []resource.TestStep{ + { + Config: hclProvider() + hclDatasourceSubaccountPlanWoOffering("uut", "59cd458e-e66e-4b60-b6d8-8f219379f9a5", "standard"), + ExpectError: regexp.MustCompile(`Attribute "offering_name" must be specified when "name" is specified`), + }, + }, + }) + }) + + t.Run("error path - subaccount id mandatory", func(t *testing.T) { + resource.Test(t, resource.TestCase{ + IsUnitTest: true, + ProtoV6ProviderFactories: getProviders(nil), + Steps: []resource.TestStep{ + { + Config: hclProvider() + hclDatasourceSubaccountPlanWoSubaccount("uut", "lite", "destination"), + ExpectError: regexp.MustCompile(`The argument "subaccount_id" is required, but no definition was found.`), + }, + }, + }) + }) + +} + +func hclDatasourceSubaccountPlanById(resourceName string, subaccountId string, planId string) string { + template := ` +data "btp_subaccount_service_plan" "%s" { + subaccount_id = "%s" + id = "%s" +}` + + return fmt.Sprintf(template, resourceName, subaccountId, planId) +} + +func hclDatasourceSubaccountPlanByNameAndOffering(resourceName string, subaccountId string, planName string, offeringName string) string { + template := ` +data "btp_subaccount_service_plan" "%s" { + subaccount_id = "%s" + name = "%s" + offering_name = "%s" +}` + return fmt.Sprintf(template, resourceName, subaccountId, planName, offeringName) +} + +func hclDatasourceSubaccountPlanWoOffering(resourceName string, subaccountId string, planName string) string { + template := ` +data "btp_subaccount_service_plan" "%s" { + subaccount_id = "%s" + name = "%s" +}` + return fmt.Sprintf(template, resourceName, subaccountId, planName) +} + +func hclDatasourceSubaccountPlanWoSubaccount(resourceName string, planName string, offeringName string) string { + template := ` +data "btp_subaccount_service_plan" "%s" { + name = "%s" + offering_name = "%s" +}` + return fmt.Sprintf(template, resourceName, planName, offeringName) +} diff --git a/internal/provider/datasource_subaccount_service_plans.go b/internal/provider/datasource_subaccount_service_plans.go index fb4177d2..aee898e8 100644 --- a/internal/provider/datasource_subaccount_service_plans.go +++ b/internal/provider/datasource_subaccount_service_plans.go @@ -37,6 +37,7 @@ type subaccountServicePlanValueConfig struct { type subaccountServicePlansDataSourceConfig struct { /* INPUT */ SubaccountId types.String `tfsdk:"subaccount_id"` + Id types.String `tfsdk:"id"` Environment types.String `tfsdk:"environment"` FieldsFilter types.String `tfsdk:"fields_filter"` LabelsFilter types.String `tfsdk:"labels_filter"` @@ -71,6 +72,11 @@ func (ds *subaccountServicePlansDataSource) Schema(_ context.Context, _ datasour uuidvalidator.ValidUUID(), }, }, + "id": schema.StringAttribute{ // required hashicorps terraform plugin testing framework + DeprecationMessage: "Use the `subaccount_id` attribute instead", + MarkdownDescription: "The ID of the subaccount.", + Computed: true, + }, "environment": schema.StringAttribute{ MarkdownDescription: "Filter the response on the environment (sapbtp, kubernetes, cloudfoundry).", Optional: true, @@ -79,14 +85,14 @@ func (ds *subaccountServicePlansDataSource) Schema(_ context.Context, _ datasour }, }, "fields_filter": schema.StringAttribute{ - MarkdownDescription: "Filters the response based on the label query.", + MarkdownDescription: "Filters the response based on the field query.", Optional: true, Validators: []validator.String{ stringvalidator.LengthAtLeast(1), }, }, "labels_filter": schema.StringAttribute{ - MarkdownDescription: "Filters the response based on the field query.", + MarkdownDescription: "Filters the response based on the labels query.", Optional: true, Validators: []validator.String{ stringvalidator.LengthAtLeast(1), @@ -174,6 +180,7 @@ func (ds *subaccountServicePlansDataSource) Read(ctx context.Context, req dataso return } + data.Id = data.SubaccountId data.Values = []subaccountServicePlanValueConfig{} for _, item := range cliRes { diff --git a/internal/provider/datasource_subaccount_service_plans_test.go b/internal/provider/datasource_subaccount_service_plans_test.go new file mode 100644 index 00000000..746e2888 --- /dev/null +++ b/internal/provider/datasource_subaccount_service_plans_test.go @@ -0,0 +1,124 @@ +package provider + +import ( + "fmt" + "regexp" + "testing" + + "github.com/hashicorp/terraform-plugin-testing/helper/resource" +) + +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") + defer stopQuietly(rec) + + resource.Test(t, resource.TestCase{ + IsUnitTest: true, + ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), + Steps: []resource.TestStep{ + { + Config: hclProvider() + 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"), + ), + }, + }, + }) + }) + + t.Run("happy path - service plans for subaccount and environment", func(t *testing.T) { + rec := setupVCR(t, "fixtures/datasource_subaccount_service_plans_cloudfoundry") + defer stopQuietly(rec) + + resource.Test(t, resource.TestCase{ + IsUnitTest: true, + ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), + Steps: []resource.TestStep{ + { + Config: hclProvider() + 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"), + ), + }, + }, + }) + }) + + t.Run("happy path - service plans for subaccount with fields filter", func(t *testing.T) { + rec := setupVCR(t, "fixtures/datasource_subaccount_service_plans_namefilter") + defer stopQuietly(rec) + + resource.Test(t, resource.TestCase{ + IsUnitTest: true, + ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), + Steps: []resource.TestStep{ + { + Config: hclProvider() + 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"), + ), + }, + }, + }) + }) + + t.Run("error path - subaccount_id mandatory", func(t *testing.T) { + resource.Test(t, resource.TestCase{ + IsUnitTest: true, + ProtoV6ProviderFactories: getProviders(nil), + Steps: []resource.TestStep{ + { + Config: hclProvider() + `data "btp_subaccount_service_plans" "uut" {}`, + ExpectError: regexp.MustCompile(`The argument "subaccount_id" is required, but no definition was found`), + }, + }, + }) + }) + t.Run("error path - subaccount_id not a valid UUID", func(t *testing.T) { + resource.Test(t, resource.TestCase{ + IsUnitTest: true, + ProtoV6ProviderFactories: getProviders(nil), + Steps: []resource.TestStep{ + { + Config: hclProvider() + 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`), + }, + }, + }) + }) + +} + +func hclDatasourceSubaccountPlansBySubaccount(resourceName string, subaccountId string) string { + template := ` +data "btp_subaccount_service_plans" "%s" { + subaccount_id = "%s" +}` + + return fmt.Sprintf(template, resourceName, subaccountId) +} + +func hclDatasourceSubaccountPlansBySubaccountAndEnvironment(resourceName string, subaccountId string, environment string) string { + template := ` +data "btp_subaccount_service_plans" "%s" { + subaccount_id = "%s" + environment = "%s" +}` + + return fmt.Sprintf(template, resourceName, subaccountId, environment) +} + +func hclDatasourceSubaccountPlansBySubaccountAndFields(resourceName string, subaccountId string) string { + template := ` +data "btp_subaccount_service_plans" "%s" { + subaccount_id = "%s" + fields_filter = "name eq 'standard'" +}` + + return fmt.Sprintf(template, resourceName, subaccountId) +} diff --git a/internal/provider/fixtures/datasource_subaccount_service_instance_by_id.yaml b/internal/provider/fixtures/datasource_subaccount_service_instance_by_id.yaml new file mode 100644 index 00000000..e0718edf --- /dev/null +++ b/internal/provider/fixtures/datasource_subaccount_service_instance_by_id.yaml @@ -0,0 +1,1145 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - 25e1f067-25c5-c3eb-9924-83acb397caf2 + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 13:02:19 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: + - adfb8b18-38c2-46ef-5e94-f450e943fc99 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 946.8768ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 135 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"id":"df532d07-57a7-415e-a261-23a398ef068a","parameters":"false","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.1 terraform-provider-btp/dev + X-Correlationid: + - abb7c462-6c26-5a7d-f414-bfea1e50054d + 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/services/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: + - Fri, 07 Jul 2023 13:02:19 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/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-services-4ie3yr1a + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - bf01203d-a890-417c-48f8-362437db4be6 + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 219.3685ms + - id: 2 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 135 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"id":"df532d07-57a7-415e-a261-23a398ef068a","parameters":"false","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + 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 + X-Correlationid: + - abb7c462-6c26-5a7d-f414-bfea1e50054d + X-Cpcli-Customidp: + - "" + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-services-4ie3yr1a + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/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":"df532d07-57a7-415e-a261-23a398ef068a","ready":true,"last_operation":{"id":"bc70fef0-3855-45b7-abed-8fb961d8e9d6","ready":true,"type":"create","state":"succeeded","resource_id":"df532d07-57a7-415e-a261-23a398ef068a","resource_type":"/v1/service_instances","platform_id":"service-manager","correlation_id":"60ecffd7-f17f-4d26-6c18-e4db28c53de4","reschedule":false,"reschedule_timestamp":"0001-01-01T00:00:00Z","deletion_scheduled":"0001-01-01T00:00:00Z","created_at":"2023-07-07T11:52:51.049154Z","updated_at":"2023-07-07T11:52:51.592762Z"},"name":"tf-testacc-alertnotification-instance","service_plan_id":"f0aac855-474d-4016-9529-61c062efbc7c","platform_id":"service-manager","context":{"platform":"sapcp","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","origin":"sapcp","license_type":"SAPDEV","crm_customer_id":"","instance_name":"tf-testacc-alertnotification-instance"},"usable":true,"subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","protected":null,"created_at":"2023-07-07T11:52:51.049151Z","updated_at":"2023-07-07T11:52:51.588882Z","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: + - Fri, 07 Jul 2023 13:02:20 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: + - ee2cef36-1480-4816-7a49-c2f08451a6d0 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 620.0829ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - 07f87332-5c1e-bcde-c39c-c16094183e3d + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 13:02:20 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: + - e617846a-95da-43dc-60a4-8f0f665841eb + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 452.6319ms + - id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 135 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"id":"df532d07-57a7-415e-a261-23a398ef068a","parameters":"false","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.1 terraform-provider-btp/dev + X-Correlationid: + - 168fd326-0855-a320-8025-703330146a8c + 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/services/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: + - Fri, 07 Jul 2023 13:02:20 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/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-services-4ie3yr1a + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - be9bddc7-fe83-4a2d-66eb-69c4d23d9601 + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 242.9591ms + - id: 5 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 135 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"id":"df532d07-57a7-415e-a261-23a398ef068a","parameters":"false","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + 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 + X-Correlationid: + - 168fd326-0855-a320-8025-703330146a8c + X-Cpcli-Customidp: + - "" + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-services-4ie3yr1a + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/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":"df532d07-57a7-415e-a261-23a398ef068a","ready":true,"last_operation":{"id":"bc70fef0-3855-45b7-abed-8fb961d8e9d6","ready":true,"type":"create","state":"succeeded","resource_id":"df532d07-57a7-415e-a261-23a398ef068a","resource_type":"/v1/service_instances","platform_id":"service-manager","correlation_id":"60ecffd7-f17f-4d26-6c18-e4db28c53de4","reschedule":false,"reschedule_timestamp":"0001-01-01T00:00:00Z","deletion_scheduled":"0001-01-01T00:00:00Z","created_at":"2023-07-07T11:52:51.049154Z","updated_at":"2023-07-07T11:52:51.592762Z"},"name":"tf-testacc-alertnotification-instance","service_plan_id":"f0aac855-474d-4016-9529-61c062efbc7c","platform_id":"service-manager","context":{"platform":"sapcp","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","origin":"sapcp","license_type":"SAPDEV","crm_customer_id":"","instance_name":"tf-testacc-alertnotification-instance"},"usable":true,"subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","protected":null,"created_at":"2023-07-07T11:52:51.049151Z","updated_at":"2023-07-07T11:52:51.588882Z","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: + - Fri, 07 Jul 2023 13:02:20 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: + - d49463ca-0be3-4f44-7fca-b39f6cccdf6e + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 157.8833ms + - id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - a022dc8e-34a2-e51b-52f7-d1c859f15a26 + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 13:02: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-Frame-Options: + - DENY + X-Vcap-Request-Id: + - 87c66ddc-76a2-4484-577a-ff7539e21995 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 399.3206ms + - id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 135 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"id":"df532d07-57a7-415e-a261-23a398ef068a","parameters":"false","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.1 terraform-provider-btp/dev + X-Correlationid: + - d1713b8a-be28-7831-37d9-008788a589c3 + 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/services/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: + - Fri, 07 Jul 2023 13:02:21 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/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-services-4ie3yr1a + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - 9faf576c-5e62-42a8-42f4-53bafcd1af95 + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 229.6761ms + - id: 8 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 135 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"id":"df532d07-57a7-415e-a261-23a398ef068a","parameters":"false","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + 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 + X-Correlationid: + - d1713b8a-be28-7831-37d9-008788a589c3 + X-Cpcli-Customidp: + - "" + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-services-4ie3yr1a + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/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":"df532d07-57a7-415e-a261-23a398ef068a","ready":true,"last_operation":{"id":"bc70fef0-3855-45b7-abed-8fb961d8e9d6","ready":true,"type":"create","state":"succeeded","resource_id":"df532d07-57a7-415e-a261-23a398ef068a","resource_type":"/v1/service_instances","platform_id":"service-manager","correlation_id":"60ecffd7-f17f-4d26-6c18-e4db28c53de4","reschedule":false,"reschedule_timestamp":"0001-01-01T00:00:00Z","deletion_scheduled":"0001-01-01T00:00:00Z","created_at":"2023-07-07T11:52:51.049154Z","updated_at":"2023-07-07T11:52:51.592762Z"},"name":"tf-testacc-alertnotification-instance","service_plan_id":"f0aac855-474d-4016-9529-61c062efbc7c","platform_id":"service-manager","context":{"platform":"sapcp","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","origin":"sapcp","license_type":"SAPDEV","crm_customer_id":"","instance_name":"tf-testacc-alertnotification-instance"},"usable":true,"subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","protected":null,"created_at":"2023-07-07T11:52:51.049151Z","updated_at":"2023-07-07T11:52:51.588882Z","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: + - Fri, 07 Jul 2023 13:02: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 + X-Cpcli-Backend-Status: + - "200" + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Replacementrefreshtoken: + - redacted + X-Frame-Options: + - DENY + X-Vcap-Request-Id: + - 619cf459-4571-4b13-422e-25e42289f1b3 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 115.974ms + - id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - 7a1fcb11-bcc3-65f6-a2d9-748d57e9505e + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 13:02:22 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: + - 32aab6e6-d2f3-4b16-4922-3cd1f0446e6c + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 370.809ms + - id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 135 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"id":"df532d07-57a7-415e-a261-23a398ef068a","parameters":"false","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.1 terraform-provider-btp/dev + X-Correlationid: + - bbe59984-be61-7501-c2ff-d11043d1dcfb + 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/services/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: + - Fri, 07 Jul 2023 13:02:22 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/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-services-4ie3yr1a + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - 68750dfe-8414-4896-6e85-c28f354dd944 + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 193.5659ms + - id: 11 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 135 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"id":"df532d07-57a7-415e-a261-23a398ef068a","parameters":"false","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + 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 + X-Correlationid: + - bbe59984-be61-7501-c2ff-d11043d1dcfb + X-Cpcli-Customidp: + - "" + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-services-4ie3yr1a + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/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":"df532d07-57a7-415e-a261-23a398ef068a","ready":true,"last_operation":{"id":"bc70fef0-3855-45b7-abed-8fb961d8e9d6","ready":true,"type":"create","state":"succeeded","resource_id":"df532d07-57a7-415e-a261-23a398ef068a","resource_type":"/v1/service_instances","platform_id":"service-manager","correlation_id":"60ecffd7-f17f-4d26-6c18-e4db28c53de4","reschedule":false,"reschedule_timestamp":"0001-01-01T00:00:00Z","deletion_scheduled":"0001-01-01T00:00:00Z","created_at":"2023-07-07T11:52:51.049154Z","updated_at":"2023-07-07T11:52:51.592762Z"},"name":"tf-testacc-alertnotification-instance","service_plan_id":"f0aac855-474d-4016-9529-61c062efbc7c","platform_id":"service-manager","context":{"platform":"sapcp","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","origin":"sapcp","license_type":"SAPDEV","crm_customer_id":"","instance_name":"tf-testacc-alertnotification-instance"},"usable":true,"subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","protected":null,"created_at":"2023-07-07T11:52:51.049151Z","updated_at":"2023-07-07T11:52:51.588882Z","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: + - Fri, 07 Jul 2023 13:02:22 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: + - bdf307eb-6a8f-42dd-6927-b78b096fa20d + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 125.9487ms + - id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - 7f20c663-c1d1-dad0-8181-b4c59ecb75a4 + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 13:02:23 GMT + Expires: + - "0" + Pragma: + - no-cache + Referrer-Policy: + - no-referrer + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload; + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Vcap-Request-Id: + - c46228c9-fc6b-4fac-4c4b-76b93ad587d6 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 369.3214ms + - id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 135 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"id":"df532d07-57a7-415e-a261-23a398ef068a","parameters":"false","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.1 terraform-provider-btp/dev + X-Correlationid: + - fd658c5b-8c30-d905-18ab-d2ac6f8c603c + 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/services/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: + - Fri, 07 Jul 2023 13:02:23 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/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-services-4ie3yr1a + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - e4bdf2a3-0e2f-44a4-5963-d665ed2d3d4f + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 201.3857ms + - id: 14 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 135 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"id":"df532d07-57a7-415e-a261-23a398ef068a","parameters":"false","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + 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 + X-Correlationid: + - fd658c5b-8c30-d905-18ab-d2ac6f8c603c + X-Cpcli-Customidp: + - "" + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-services-4ie3yr1a + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/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":"df532d07-57a7-415e-a261-23a398ef068a","ready":true,"last_operation":{"id":"bc70fef0-3855-45b7-abed-8fb961d8e9d6","ready":true,"type":"create","state":"succeeded","resource_id":"df532d07-57a7-415e-a261-23a398ef068a","resource_type":"/v1/service_instances","platform_id":"service-manager","correlation_id":"60ecffd7-f17f-4d26-6c18-e4db28c53de4","reschedule":false,"reschedule_timestamp":"0001-01-01T00:00:00Z","deletion_scheduled":"0001-01-01T00:00:00Z","created_at":"2023-07-07T11:52:51.049154Z","updated_at":"2023-07-07T11:52:51.592762Z"},"name":"tf-testacc-alertnotification-instance","service_plan_id":"f0aac855-474d-4016-9529-61c062efbc7c","platform_id":"service-manager","context":{"platform":"sapcp","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","origin":"sapcp","license_type":"SAPDEV","crm_customer_id":"","instance_name":"tf-testacc-alertnotification-instance"},"usable":true,"subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","protected":null,"created_at":"2023-07-07T11:52:51.049151Z","updated_at":"2023-07-07T11:52:51.588882Z","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: + - Fri, 07 Jul 2023 13:02:23 GMT + Expires: + - "0" + Pragma: + - no-cache + Referrer-Policy: + - no-referrer + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload; + X-Content-Type-Options: + - nosniff + X-Cpcli-Backend-Mediatype: + - application/json + X-Cpcli-Backend-Status: + - "200" + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Replacementrefreshtoken: + - redacted + X-Frame-Options: + - DENY + X-Vcap-Request-Id: + - 6b4ac678-d86b-417a-64dc-3d1a0508ae07 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 123.6258ms + - id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - 6f812f2b-577d-62e0-aa8d-6bc301bcc8e6 + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 13:02:23 GMT + Expires: + - "0" + Pragma: + - no-cache + Referrer-Policy: + - no-referrer + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload; + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Vcap-Request-Id: + - 5a6154cd-f50c-479a-65fb-74e96cf5d97d + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 379.2389ms diff --git a/internal/provider/fixtures/datasource_subaccount_service_instance_by_name.yaml b/internal/provider/fixtures/datasource_subaccount_service_instance_by_name.yaml new file mode 100644 index 00000000..65fec256 --- /dev/null +++ b/internal/provider/fixtures/datasource_subaccount_service_instance_by_name.yaml @@ -0,0 +1,1145 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - 968967b7-bc1e-6e45-b88e-1d0e09919a7b + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 13:02: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-Frame-Options: + - DENY + X-Vcap-Request-Id: + - 7b9b793b-1fa9-4f03-7bb0-e5c74fda2a22 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 409.5547ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 138 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"name":"tf-testacc-alertnotification-instance","parameters":"false","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.1 terraform-provider-btp/dev + X-Correlationid: + - 41eeec96-dff2-3552-bc5a-c89f64fa52e4 + 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/services/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: + - Fri, 07 Jul 2023 13:02:24 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/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-services-4ie3yr1a + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - 8a608d3e-8530-4826-6f92-bff7805f7887 + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 200.7844ms + - id: 2 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 138 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"name":"tf-testacc-alertnotification-instance","parameters":"false","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + 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 + X-Correlationid: + - 41eeec96-dff2-3552-bc5a-c89f64fa52e4 + X-Cpcli-Customidp: + - "" + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-services-4ie3yr1a + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/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":"df532d07-57a7-415e-a261-23a398ef068a","ready":true,"last_operation":{"id":"bc70fef0-3855-45b7-abed-8fb961d8e9d6","ready":true,"type":"create","state":"succeeded","resource_id":"df532d07-57a7-415e-a261-23a398ef068a","resource_type":"/v1/service_instances","platform_id":"service-manager","correlation_id":"60ecffd7-f17f-4d26-6c18-e4db28c53de4","reschedule":false,"reschedule_timestamp":"0001-01-01T00:00:00Z","deletion_scheduled":"0001-01-01T00:00:00Z","created_at":"2023-07-07T11:52:51.049154Z","updated_at":"2023-07-07T11:52:51.592762Z"},"name":"tf-testacc-alertnotification-instance","service_plan_id":"f0aac855-474d-4016-9529-61c062efbc7c","platform_id":"service-manager","context":{"platform":"sapcp","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","origin":"sapcp","license_type":"SAPDEV","crm_customer_id":"","instance_name":"tf-testacc-alertnotification-instance"},"usable":true,"subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","protected":null,"created_at":"2023-07-07T11:52:51.049151Z","updated_at":"2023-07-07T11:52:51.588882Z","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: + - Fri, 07 Jul 2023 13:02: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 + X-Cpcli-Backend-Status: + - "200" + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Replacementrefreshtoken: + - redacted + X-Frame-Options: + - DENY + X-Vcap-Request-Id: + - 1a8d3083-b41e-4a14-6f6d-b25b0aa1459e + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 122.7707ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - 60b9d873-cbb5-89d3-c23c-b4b7f070dd3e + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 13:02:25 GMT + Expires: + - "0" + Pragma: + - no-cache + Referrer-Policy: + - no-referrer + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload; + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Vcap-Request-Id: + - 6da30f05-f3a2-4963-5be1-3a72cb5f43e5 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 358.0607ms + - id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 138 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"name":"tf-testacc-alertnotification-instance","parameters":"false","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.1 terraform-provider-btp/dev + X-Correlationid: + - a2b1b787-79fe-a95d-f7f3-0ba799708c0e + 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/services/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: + - Fri, 07 Jul 2023 13:02:25 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/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-services-4ie3yr1a + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - 422b678e-c54a-444f-661e-7770dd655d08 + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 262.3894ms + - id: 5 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 138 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"name":"tf-testacc-alertnotification-instance","parameters":"false","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + 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 + X-Correlationid: + - a2b1b787-79fe-a95d-f7f3-0ba799708c0e + X-Cpcli-Customidp: + - "" + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-services-4ie3yr1a + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/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":"df532d07-57a7-415e-a261-23a398ef068a","ready":true,"last_operation":{"id":"bc70fef0-3855-45b7-abed-8fb961d8e9d6","ready":true,"type":"create","state":"succeeded","resource_id":"df532d07-57a7-415e-a261-23a398ef068a","resource_type":"/v1/service_instances","platform_id":"service-manager","correlation_id":"60ecffd7-f17f-4d26-6c18-e4db28c53de4","reschedule":false,"reschedule_timestamp":"0001-01-01T00:00:00Z","deletion_scheduled":"0001-01-01T00:00:00Z","created_at":"2023-07-07T11:52:51.049154Z","updated_at":"2023-07-07T11:52:51.592762Z"},"name":"tf-testacc-alertnotification-instance","service_plan_id":"f0aac855-474d-4016-9529-61c062efbc7c","platform_id":"service-manager","context":{"platform":"sapcp","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","origin":"sapcp","license_type":"SAPDEV","crm_customer_id":"","instance_name":"tf-testacc-alertnotification-instance"},"usable":true,"subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","protected":null,"created_at":"2023-07-07T11:52:51.049151Z","updated_at":"2023-07-07T11:52:51.588882Z","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: + - Fri, 07 Jul 2023 13:02:25 GMT + Expires: + - "0" + Pragma: + - no-cache + Referrer-Policy: + - no-referrer + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload; + X-Content-Type-Options: + - nosniff + X-Cpcli-Backend-Mediatype: + - application/json + X-Cpcli-Backend-Status: + - "200" + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Replacementrefreshtoken: + - redacted + X-Frame-Options: + - DENY + X-Vcap-Request-Id: + - 79442b34-2cf9-44b7-770a-9282c21e7de3 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 151.2087ms + - id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - e182f851-43d2-b984-f067-52c190d109ec + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 13:02: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: + - 088c387c-db35-4308-405a-d20e3aa8598b + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 379.8553ms + - id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 138 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"name":"tf-testacc-alertnotification-instance","parameters":"false","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.1 terraform-provider-btp/dev + X-Correlationid: + - 261662e3-60e3-e595-db62-9b24a6d924ad + 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/services/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: + - Fri, 07 Jul 2023 13:02:26 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/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-services-4ie3yr1a + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - 8fc098ee-03e0-4146-6001-df9b9638da27 + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 220.8794ms + - id: 8 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 138 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"name":"tf-testacc-alertnotification-instance","parameters":"false","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + 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 + X-Correlationid: + - 261662e3-60e3-e595-db62-9b24a6d924ad + X-Cpcli-Customidp: + - "" + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-services-4ie3yr1a + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/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":"df532d07-57a7-415e-a261-23a398ef068a","ready":true,"last_operation":{"id":"bc70fef0-3855-45b7-abed-8fb961d8e9d6","ready":true,"type":"create","state":"succeeded","resource_id":"df532d07-57a7-415e-a261-23a398ef068a","resource_type":"/v1/service_instances","platform_id":"service-manager","correlation_id":"60ecffd7-f17f-4d26-6c18-e4db28c53de4","reschedule":false,"reschedule_timestamp":"0001-01-01T00:00:00Z","deletion_scheduled":"0001-01-01T00:00:00Z","created_at":"2023-07-07T11:52:51.049154Z","updated_at":"2023-07-07T11:52:51.592762Z"},"name":"tf-testacc-alertnotification-instance","service_plan_id":"f0aac855-474d-4016-9529-61c062efbc7c","platform_id":"service-manager","context":{"platform":"sapcp","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","origin":"sapcp","license_type":"SAPDEV","crm_customer_id":"","instance_name":"tf-testacc-alertnotification-instance"},"usable":true,"subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","protected":null,"created_at":"2023-07-07T11:52:51.049151Z","updated_at":"2023-07-07T11:52:51.588882Z","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: + - Fri, 07 Jul 2023 13:02:26 GMT + Expires: + - "0" + Pragma: + - no-cache + Referrer-Policy: + - no-referrer + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload; + X-Content-Type-Options: + - nosniff + X-Cpcli-Backend-Mediatype: + - application/json + X-Cpcli-Backend-Status: + - "200" + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Replacementrefreshtoken: + - redacted + X-Frame-Options: + - DENY + X-Vcap-Request-Id: + - bf6c2535-36f1-40eb-48ed-b673f9073144 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 142.5367ms + - id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - 2bd39ba3-9c3d-fa0c-1eaf-b9a6992eefb8 + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 13:02: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: + - 7ce391d0-1d4d-4087-634a-75067fe591c7 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 337.8411ms + - id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 138 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"name":"tf-testacc-alertnotification-instance","parameters":"false","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.1 terraform-provider-btp/dev + X-Correlationid: + - 902f8455-3d3b-21d0-bdec-d62e025b904d + 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/services/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: + - Fri, 07 Jul 2023 13:02:27 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/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-services-4ie3yr1a + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - 7ba17c4b-8083-4ba4-693f-7812f4df8c6c + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 197.314ms + - id: 11 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 138 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"name":"tf-testacc-alertnotification-instance","parameters":"false","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + 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 + X-Correlationid: + - 902f8455-3d3b-21d0-bdec-d62e025b904d + X-Cpcli-Customidp: + - "" + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-services-4ie3yr1a + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/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":"df532d07-57a7-415e-a261-23a398ef068a","ready":true,"last_operation":{"id":"bc70fef0-3855-45b7-abed-8fb961d8e9d6","ready":true,"type":"create","state":"succeeded","resource_id":"df532d07-57a7-415e-a261-23a398ef068a","resource_type":"/v1/service_instances","platform_id":"service-manager","correlation_id":"60ecffd7-f17f-4d26-6c18-e4db28c53de4","reschedule":false,"reschedule_timestamp":"0001-01-01T00:00:00Z","deletion_scheduled":"0001-01-01T00:00:00Z","created_at":"2023-07-07T11:52:51.049154Z","updated_at":"2023-07-07T11:52:51.592762Z"},"name":"tf-testacc-alertnotification-instance","service_plan_id":"f0aac855-474d-4016-9529-61c062efbc7c","platform_id":"service-manager","context":{"platform":"sapcp","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","origin":"sapcp","license_type":"SAPDEV","crm_customer_id":"","instance_name":"tf-testacc-alertnotification-instance"},"usable":true,"subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","protected":null,"created_at":"2023-07-07T11:52:51.049151Z","updated_at":"2023-07-07T11:52:51.588882Z","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: + - Fri, 07 Jul 2023 13:02:27 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: + - 3dbe2c39-efe7-425d-4b2b-bfb43bdfd4ee + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 123.0178ms + - id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - 23540e59-5599-6740-0b61-a4dbe7865fd8 + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 13:02:27 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: + - 765db210-d0ac-4657-7a55-1c1f7fdce338 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 386.4565ms + - id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 138 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"name":"tf-testacc-alertnotification-instance","parameters":"false","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.1 terraform-provider-btp/dev + X-Correlationid: + - b671e24f-30b6-2c92-cfbc-1dd9f0cc4b36 + 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/services/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: + - Fri, 07 Jul 2023 13:02:27 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/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-services-4ie3yr1a + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - 2034e58c-bbe8-4ce7-60cb-18776ec6c548 + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 179.7315ms + - id: 14 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 138 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"name":"tf-testacc-alertnotification-instance","parameters":"false","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + 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 + X-Correlationid: + - b671e24f-30b6-2c92-cfbc-1dd9f0cc4b36 + X-Cpcli-Customidp: + - "" + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-services-4ie3yr1a + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/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":"df532d07-57a7-415e-a261-23a398ef068a","ready":true,"last_operation":{"id":"bc70fef0-3855-45b7-abed-8fb961d8e9d6","ready":true,"type":"create","state":"succeeded","resource_id":"df532d07-57a7-415e-a261-23a398ef068a","resource_type":"/v1/service_instances","platform_id":"service-manager","correlation_id":"60ecffd7-f17f-4d26-6c18-e4db28c53de4","reschedule":false,"reschedule_timestamp":"0001-01-01T00:00:00Z","deletion_scheduled":"0001-01-01T00:00:00Z","created_at":"2023-07-07T11:52:51.049154Z","updated_at":"2023-07-07T11:52:51.592762Z"},"name":"tf-testacc-alertnotification-instance","service_plan_id":"f0aac855-474d-4016-9529-61c062efbc7c","platform_id":"service-manager","context":{"platform":"sapcp","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","origin":"sapcp","license_type":"SAPDEV","crm_customer_id":"","instance_name":"tf-testacc-alertnotification-instance"},"usable":true,"subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","protected":null,"created_at":"2023-07-07T11:52:51.049151Z","updated_at":"2023-07-07T11:52:51.588882Z","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: + - Fri, 07 Jul 2023 13:02:28 GMT + Expires: + - "0" + Pragma: + - no-cache + Referrer-Policy: + - no-referrer + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload; + X-Content-Type-Options: + - nosniff + X-Cpcli-Backend-Mediatype: + - application/json + X-Cpcli-Backend-Status: + - "200" + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Replacementrefreshtoken: + - redacted + X-Frame-Options: + - DENY + X-Vcap-Request-Id: + - 7a0fd062-f385-48b9-6007-4c14f2b5e48b + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 109.7336ms + - id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - e443561b-9707-a294-f79a-7e1ed20509b3 + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 13:02: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: + - 255717e0-0550-45c5-7357-0153bb90a658 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 381.5126ms diff --git a/internal/provider/fixtures/datasource_subaccount_service_instances_all.yaml b/internal/provider/fixtures/datasource_subaccount_service_instances_all.yaml new file mode 100644 index 00000000..bc8a51f0 --- /dev/null +++ b/internal/provider/fixtures/datasource_subaccount_service_instances_all.yaml @@ -0,0 +1,1145 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - aef4962e-eb62-8904-3e6a-8f0183d13e3a + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 12:55:19 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: + - ee8718ea-40c8-456e-73df-8a3afc147f57 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 542.6288ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 70 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.1 terraform-provider-btp/dev + X-Correlationid: + - 33795b15-b338-e033-7473-18eb578f00c5 + 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/services/instance?list + 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, 07 Jul 2023 12:55:19 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/instance?list + 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-services-4ie3yr1a + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - 437396c5-54f1-45ea-53f4-b67d9d8c25e1 + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 226.5971ms + - id: 2 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 70 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + 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 + X-Correlationid: + - 33795b15-b338-e033-7473-18eb578f00c5 + X-Cpcli-Customidp: + - "" + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-services-4ie3yr1a + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/instance?list + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '[{"id":"b6a7d7da-41f4-4dfc-a883-fde826c2e9f9","ready":true,"name":"tf-testacc-iban-sample","service_plan_id":"93481392-dadf-4520-ada2-b0852127a1e5","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","crm_customer_id":"","origin":"sapcp","zone_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subdomain":"integration-test-services-4ie3yr1a","region":"cf-eu12","instance_name":"tf-testacc-iban-sample"},"usable":true,"subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","protected":null,"created_at":"2023-07-07T11:49:41.166537Z","updated_at":"2023-07-07T12:33:59.95431Z","labels":"org = testvalue; subaccount_id = 59cd458e-e66e-4b60-b6d8-8f219379f9a5"},{"id":"df532d07-57a7-415e-a261-23a398ef068a","ready":true,"name":"tf-testacc-alertnotification-instance","service_plan_id":"f0aac855-474d-4016-9529-61c062efbc7c","platform_id":"service-manager","context":{"platform":"sapcp","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","origin":"sapcp","license_type":"SAPDEV","crm_customer_id":"","instance_name":"tf-testacc-alertnotification-instance"},"usable":true,"subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","protected":null,"created_at":"2023-07-07T11:52:51.049151Z","updated_at":"2023-07-07T11:52:51.588882Z","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: + - Fri, 07 Jul 2023 12:55:20 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: + - f2accd1a-ad03-4515-76a1-8e12d6f602a9 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 221.8136ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - 3b8345e0-4f62-e75c-48cc-c6c5bb7da151 + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 12:55:20 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: + - 62454418-9dec-43e4-5eec-43aaf412407e + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 410.4928ms + - id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 70 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.1 terraform-provider-btp/dev + X-Correlationid: + - eaa66328-ba47-4e51-69e0-2d167e409ebc + 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/services/instance?list + 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, 07 Jul 2023 12:55:20 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/instance?list + 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-services-4ie3yr1a + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - aa28cf96-0ed9-4619-77f5-e45013f0ffc4 + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 175.6394ms + - id: 5 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 70 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + 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 + X-Correlationid: + - eaa66328-ba47-4e51-69e0-2d167e409ebc + X-Cpcli-Customidp: + - "" + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-services-4ie3yr1a + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/instance?list + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '[{"id":"b6a7d7da-41f4-4dfc-a883-fde826c2e9f9","ready":true,"name":"tf-testacc-iban-sample","service_plan_id":"93481392-dadf-4520-ada2-b0852127a1e5","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","crm_customer_id":"","origin":"sapcp","zone_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subdomain":"integration-test-services-4ie3yr1a","region":"cf-eu12","instance_name":"tf-testacc-iban-sample"},"usable":true,"subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","protected":null,"created_at":"2023-07-07T11:49:41.166537Z","updated_at":"2023-07-07T12:33:59.95431Z","labels":"org = testvalue; subaccount_id = 59cd458e-e66e-4b60-b6d8-8f219379f9a5"},{"id":"df532d07-57a7-415e-a261-23a398ef068a","ready":true,"name":"tf-testacc-alertnotification-instance","service_plan_id":"f0aac855-474d-4016-9529-61c062efbc7c","platform_id":"service-manager","context":{"platform":"sapcp","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","origin":"sapcp","license_type":"SAPDEV","crm_customer_id":"","instance_name":"tf-testacc-alertnotification-instance"},"usable":true,"subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","protected":null,"created_at":"2023-07-07T11:52:51.049151Z","updated_at":"2023-07-07T11:52:51.588882Z","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: + - Fri, 07 Jul 2023 12:55: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 + X-Cpcli-Backend-Status: + - "200" + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Replacementrefreshtoken: + - redacted + X-Frame-Options: + - DENY + X-Vcap-Request-Id: + - c3f30bcc-fe37-4d78-4dfe-6164b170f5f7 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 149.8559ms + - id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - bf5143a5-66b6-cf8c-0e1d-21380b2abe78 + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 12:55: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-Frame-Options: + - DENY + X-Vcap-Request-Id: + - af32a800-7139-4e53-7b00-f2fac45d77ca + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 428.6643ms + - id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 70 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.1 terraform-provider-btp/dev + X-Correlationid: + - ac83a038-070a-def5-29ed-c842f42a39b3 + 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/services/instance?list + 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, 07 Jul 2023 12:55:21 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/instance?list + 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-services-4ie3yr1a + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - 992a6d0c-635d-4d1b-700f-4b646dfbb49f + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 163.8055ms + - id: 8 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 70 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + 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 + X-Correlationid: + - ac83a038-070a-def5-29ed-c842f42a39b3 + X-Cpcli-Customidp: + - "" + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-services-4ie3yr1a + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/instance?list + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '[{"id":"b6a7d7da-41f4-4dfc-a883-fde826c2e9f9","ready":true,"name":"tf-testacc-iban-sample","service_plan_id":"93481392-dadf-4520-ada2-b0852127a1e5","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","crm_customer_id":"","origin":"sapcp","zone_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subdomain":"integration-test-services-4ie3yr1a","region":"cf-eu12","instance_name":"tf-testacc-iban-sample"},"usable":true,"subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","protected":null,"created_at":"2023-07-07T11:49:41.166537Z","updated_at":"2023-07-07T12:33:59.95431Z","labels":"org = testvalue; subaccount_id = 59cd458e-e66e-4b60-b6d8-8f219379f9a5"},{"id":"df532d07-57a7-415e-a261-23a398ef068a","ready":true,"name":"tf-testacc-alertnotification-instance","service_plan_id":"f0aac855-474d-4016-9529-61c062efbc7c","platform_id":"service-manager","context":{"platform":"sapcp","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","origin":"sapcp","license_type":"SAPDEV","crm_customer_id":"","instance_name":"tf-testacc-alertnotification-instance"},"usable":true,"subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","protected":null,"created_at":"2023-07-07T11:52:51.049151Z","updated_at":"2023-07-07T11:52:51.588882Z","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: + - Fri, 07 Jul 2023 12:55: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 + X-Cpcli-Backend-Status: + - "200" + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Replacementrefreshtoken: + - redacted + X-Frame-Options: + - DENY + X-Vcap-Request-Id: + - 18337ffe-ac49-4a14-536c-96bde5800256 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 134.8912ms + - id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - 300e10a4-51c2-12b3-7c2c-89886234245f + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 12:55:22 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: + - 81358b3d-d57f-45e2-764a-47a7845c98f8 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 340.1022ms + - id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 70 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.1 terraform-provider-btp/dev + X-Correlationid: + - d256501e-5d61-91c7-4180-8c37cd90c031 + 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/services/instance?list + 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, 07 Jul 2023 12:55:22 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/instance?list + 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-services-4ie3yr1a + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - bc992987-2986-43ce-6359-a9ab3ad0452b + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 229.4539ms + - id: 11 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 70 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + 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 + X-Correlationid: + - d256501e-5d61-91c7-4180-8c37cd90c031 + X-Cpcli-Customidp: + - "" + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-services-4ie3yr1a + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/instance?list + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '[{"id":"b6a7d7da-41f4-4dfc-a883-fde826c2e9f9","ready":true,"name":"tf-testacc-iban-sample","service_plan_id":"93481392-dadf-4520-ada2-b0852127a1e5","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","crm_customer_id":"","origin":"sapcp","zone_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subdomain":"integration-test-services-4ie3yr1a","region":"cf-eu12","instance_name":"tf-testacc-iban-sample"},"usable":true,"subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","protected":null,"created_at":"2023-07-07T11:49:41.166537Z","updated_at":"2023-07-07T12:33:59.95431Z","labels":"org = testvalue; subaccount_id = 59cd458e-e66e-4b60-b6d8-8f219379f9a5"},{"id":"df532d07-57a7-415e-a261-23a398ef068a","ready":true,"name":"tf-testacc-alertnotification-instance","service_plan_id":"f0aac855-474d-4016-9529-61c062efbc7c","platform_id":"service-manager","context":{"platform":"sapcp","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","origin":"sapcp","license_type":"SAPDEV","crm_customer_id":"","instance_name":"tf-testacc-alertnotification-instance"},"usable":true,"subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","protected":null,"created_at":"2023-07-07T11:52:51.049151Z","updated_at":"2023-07-07T11:52:51.588882Z","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: + - Fri, 07 Jul 2023 12:55:22 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: + - 976df2fd-ea80-4208-59f0-c0e190e23cee + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 141.471ms + - id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - db961ba1-6c4f-5616-e242-fd218fe1cc5a + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 12:55:23 GMT + Expires: + - "0" + Pragma: + - no-cache + Referrer-Policy: + - no-referrer + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload; + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Vcap-Request-Id: + - 808ec59e-c080-4c0a-6746-8f2a361588cd + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 429.9488ms + - id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 70 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.1 terraform-provider-btp/dev + X-Correlationid: + - 962287b4-573c-f83f-ef16-f0433fb20c05 + 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/services/instance?list + 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, 07 Jul 2023 12:55:23 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/instance?list + 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-services-4ie3yr1a + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - 6b5e4924-ecd0-4c39-6b09-0ef001885057 + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 225.5704ms + - id: 14 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 70 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + 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 + X-Correlationid: + - 962287b4-573c-f83f-ef16-f0433fb20c05 + X-Cpcli-Customidp: + - "" + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-services-4ie3yr1a + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/instance?list + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '[{"id":"b6a7d7da-41f4-4dfc-a883-fde826c2e9f9","ready":true,"name":"tf-testacc-iban-sample","service_plan_id":"93481392-dadf-4520-ada2-b0852127a1e5","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","crm_customer_id":"","origin":"sapcp","zone_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subdomain":"integration-test-services-4ie3yr1a","region":"cf-eu12","instance_name":"tf-testacc-iban-sample"},"usable":true,"subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","protected":null,"created_at":"2023-07-07T11:49:41.166537Z","updated_at":"2023-07-07T12:33:59.95431Z","labels":"org = testvalue; subaccount_id = 59cd458e-e66e-4b60-b6d8-8f219379f9a5"},{"id":"df532d07-57a7-415e-a261-23a398ef068a","ready":true,"name":"tf-testacc-alertnotification-instance","service_plan_id":"f0aac855-474d-4016-9529-61c062efbc7c","platform_id":"service-manager","context":{"platform":"sapcp","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","origin":"sapcp","license_type":"SAPDEV","crm_customer_id":"","instance_name":"tf-testacc-alertnotification-instance"},"usable":true,"subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","protected":null,"created_at":"2023-07-07T11:52:51.049151Z","updated_at":"2023-07-07T11:52:51.588882Z","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: + - Fri, 07 Jul 2023 12:55:23 GMT + Expires: + - "0" + Pragma: + - no-cache + Referrer-Policy: + - no-referrer + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload; + X-Content-Type-Options: + - nosniff + X-Cpcli-Backend-Mediatype: + - application/json + X-Cpcli-Backend-Status: + - "200" + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Replacementrefreshtoken: + - redacted + X-Frame-Options: + - DENY + X-Vcap-Request-Id: + - 600b6221-93d8-4761-68a1-579be172e340 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 113.7214ms + - id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - 228a1832-3628-d2fe-3214-3559e4b8fee6 + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 12:55: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-Frame-Options: + - DENY + X-Vcap-Request-Id: + - 4074a96d-8268-4afc-5c1e-89768de38e63 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 362.2609ms diff --git a/internal/provider/fixtures/datasource_subaccount_service_instances_labelsfilter.yaml b/internal/provider/fixtures/datasource_subaccount_service_instances_labelsfilter.yaml new file mode 100644 index 00000000..d3399254 --- /dev/null +++ b/internal/provider/fixtures/datasource_subaccount_service_instances_labelsfilter.yaml @@ -0,0 +1,1145 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - e60c7f3e-619f-dfcd-c896-ee51105b6198 + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 12:55:33 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: + - 21206d6f-1598-4160-7432-90648309c1ee + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 358.5697ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 106 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"labelsFilter":"org eq 'testvalue'","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.1 terraform-provider-btp/dev + X-Correlationid: + - 4b9257c8-f9f2-b9b8-540a-4b5f11d86289 + 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/services/instance?list + 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, 07 Jul 2023 12:55:33 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/instance?list + 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-services-4ie3yr1a + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - 306e5dc5-a2ae-462c-7099-69982c2631f0 + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 184.7267ms + - id: 2 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 106 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"labelsFilter":"org eq 'testvalue'","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + 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 + X-Correlationid: + - 4b9257c8-f9f2-b9b8-540a-4b5f11d86289 + X-Cpcli-Customidp: + - "" + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-services-4ie3yr1a + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/instance?list + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '[{"id":"b6a7d7da-41f4-4dfc-a883-fde826c2e9f9","ready":true,"name":"tf-testacc-iban-sample","service_plan_id":"93481392-dadf-4520-ada2-b0852127a1e5","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","crm_customer_id":"","origin":"sapcp","zone_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subdomain":"integration-test-services-4ie3yr1a","region":"cf-eu12","instance_name":"tf-testacc-iban-sample"},"usable":true,"subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","protected":null,"created_at":"2023-07-07T11:49:41.166537Z","updated_at":"2023-07-07T12:33:59.95431Z","labels":"org = testvalue; subaccount_id = 59cd458e-e66e-4b60-b6d8-8f219379f9a5"}]' + headers: + Cache-Control: + - no-cache, no-store, max-age=0, must-revalidate + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 12:55:33 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: + - f8b2eee5-8f32-4ba4-7c2c-0e6e4e4aa3c6 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 117.9665ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - d49e4395-01a1-4ebc-1d63-2449379ae3ec + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 12:55:33 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: + - 24201e1a-44e7-45ae-7052-ca53b74d8e1e + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 336.5487ms + - id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 106 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"labelsFilter":"org eq 'testvalue'","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.1 terraform-provider-btp/dev + X-Correlationid: + - dda752bb-8b03-cc68-54cc-12c2b83810fa + 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/services/instance?list + 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, 07 Jul 2023 12:55:34 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/instance?list + 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-services-4ie3yr1a + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - 22b76457-12ce-41bc-45df-43ad05b88f0d + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 215.8713ms + - id: 5 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 106 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"labelsFilter":"org eq 'testvalue'","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + 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 + X-Correlationid: + - dda752bb-8b03-cc68-54cc-12c2b83810fa + X-Cpcli-Customidp: + - "" + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-services-4ie3yr1a + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/instance?list + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '[{"id":"b6a7d7da-41f4-4dfc-a883-fde826c2e9f9","ready":true,"name":"tf-testacc-iban-sample","service_plan_id":"93481392-dadf-4520-ada2-b0852127a1e5","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","crm_customer_id":"","origin":"sapcp","zone_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subdomain":"integration-test-services-4ie3yr1a","region":"cf-eu12","instance_name":"tf-testacc-iban-sample"},"usable":true,"subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","protected":null,"created_at":"2023-07-07T11:49:41.166537Z","updated_at":"2023-07-07T12:33:59.95431Z","labels":"org = testvalue; subaccount_id = 59cd458e-e66e-4b60-b6d8-8f219379f9a5"}]' + headers: + Cache-Control: + - no-cache, no-store, max-age=0, must-revalidate + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 12:55:34 GMT + Expires: + - "0" + Pragma: + - no-cache + Referrer-Policy: + - no-referrer + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload; + X-Content-Type-Options: + - nosniff + X-Cpcli-Backend-Mediatype: + - application/json + X-Cpcli-Backend-Status: + - "200" + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Replacementrefreshtoken: + - redacted + X-Frame-Options: + - DENY + X-Vcap-Request-Id: + - 1be83bce-c21c-4838-4001-634f723b8176 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 128.7728ms + - id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - 2896b526-4cc2-c5ba-390e-a6e5fb658546 + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 12:55:34 GMT + Expires: + - "0" + Pragma: + - no-cache + Referrer-Policy: + - no-referrer + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload; + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Vcap-Request-Id: + - a6462a79-9de9-48d5-53ff-07c56b74c715 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 357.9463ms + - id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 106 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"labelsFilter":"org eq 'testvalue'","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.1 terraform-provider-btp/dev + X-Correlationid: + - 2cf10455-791e-1308-3ea3-25f66dab1f5a + 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/services/instance?list + 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, 07 Jul 2023 12:55:34 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/instance?list + 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-services-4ie3yr1a + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - a4461376-8338-429e-45ba-bd913afb3544 + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 193.7603ms + - id: 8 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 106 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"labelsFilter":"org eq 'testvalue'","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + 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 + X-Correlationid: + - 2cf10455-791e-1308-3ea3-25f66dab1f5a + X-Cpcli-Customidp: + - "" + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-services-4ie3yr1a + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/instance?list + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '[{"id":"b6a7d7da-41f4-4dfc-a883-fde826c2e9f9","ready":true,"name":"tf-testacc-iban-sample","service_plan_id":"93481392-dadf-4520-ada2-b0852127a1e5","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","crm_customer_id":"","origin":"sapcp","zone_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subdomain":"integration-test-services-4ie3yr1a","region":"cf-eu12","instance_name":"tf-testacc-iban-sample"},"usable":true,"subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","protected":null,"created_at":"2023-07-07T11:49:41.166537Z","updated_at":"2023-07-07T12:33:59.95431Z","labels":"org = testvalue; subaccount_id = 59cd458e-e66e-4b60-b6d8-8f219379f9a5"}]' + headers: + Cache-Control: + - no-cache, no-store, max-age=0, must-revalidate + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 12:55: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: + - cab4f29f-530e-4a1a-4394-166c07311662 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 99.2254ms + - id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - da592eda-bfca-97c1-3f72-bfd592aebd2b + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 12:55: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-Frame-Options: + - DENY + X-Vcap-Request-Id: + - 703f093c-fb7a-4b22-496c-ac0f2300e9ee + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 333.8345ms + - id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 106 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"labelsFilter":"org eq 'testvalue'","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.1 terraform-provider-btp/dev + X-Correlationid: + - ff420114-a2cd-3e63-21fb-20d0c3969e8b + 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/services/instance?list + 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, 07 Jul 2023 12:55:35 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/instance?list + 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-services-4ie3yr1a + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - ca07053a-123b-4081-692a-e169abdc22f8 + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 185.8763ms + - id: 11 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 106 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"labelsFilter":"org eq 'testvalue'","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + 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 + X-Correlationid: + - ff420114-a2cd-3e63-21fb-20d0c3969e8b + X-Cpcli-Customidp: + - "" + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-services-4ie3yr1a + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/instance?list + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '[{"id":"b6a7d7da-41f4-4dfc-a883-fde826c2e9f9","ready":true,"name":"tf-testacc-iban-sample","service_plan_id":"93481392-dadf-4520-ada2-b0852127a1e5","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","crm_customer_id":"","origin":"sapcp","zone_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subdomain":"integration-test-services-4ie3yr1a","region":"cf-eu12","instance_name":"tf-testacc-iban-sample"},"usable":true,"subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","protected":null,"created_at":"2023-07-07T11:49:41.166537Z","updated_at":"2023-07-07T12:33:59.95431Z","labels":"org = testvalue; subaccount_id = 59cd458e-e66e-4b60-b6d8-8f219379f9a5"}]' + headers: + Cache-Control: + - no-cache, no-store, max-age=0, must-revalidate + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 12:55: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: + - 95922de9-2aad-4eab-7362-f1129914fbf4 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 110.903ms + - id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - f8f98973-6f05-4404-b21f-b5097feb6bc0 + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 12:55: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: + - 1d88e809-66a4-476e-74bd-040256e2854b + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 349.8473ms + - id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 106 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"labelsFilter":"org eq 'testvalue'","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.1 terraform-provider-btp/dev + X-Correlationid: + - e1d5a30f-0b27-5089-a354-8ae5b527399d + 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/services/instance?list + 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, 07 Jul 2023 12:55:36 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/instance?list + 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-services-4ie3yr1a + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - 7efacb96-2b04-424e-6eef-4d8e88e39abf + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 186.189ms + - id: 14 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 106 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"labelsFilter":"org eq 'testvalue'","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + 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 + X-Correlationid: + - e1d5a30f-0b27-5089-a354-8ae5b527399d + X-Cpcli-Customidp: + - "" + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-services-4ie3yr1a + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/instance?list + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '[{"id":"b6a7d7da-41f4-4dfc-a883-fde826c2e9f9","ready":true,"name":"tf-testacc-iban-sample","service_plan_id":"93481392-dadf-4520-ada2-b0852127a1e5","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","crm_customer_id":"","origin":"sapcp","zone_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subdomain":"integration-test-services-4ie3yr1a","region":"cf-eu12","instance_name":"tf-testacc-iban-sample"},"usable":true,"subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","protected":null,"created_at":"2023-07-07T11:49:41.166537Z","updated_at":"2023-07-07T12:33:59.95431Z","labels":"org = testvalue; subaccount_id = 59cd458e-e66e-4b60-b6d8-8f219379f9a5"}]' + headers: + Cache-Control: + - no-cache, no-store, max-age=0, must-revalidate + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 12:55:36 GMT + Expires: + - "0" + Pragma: + - no-cache + Referrer-Policy: + - no-referrer + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload; + X-Content-Type-Options: + - nosniff + X-Cpcli-Backend-Mediatype: + - application/json + X-Cpcli-Backend-Status: + - "200" + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Replacementrefreshtoken: + - redacted + X-Frame-Options: + - DENY + X-Vcap-Request-Id: + - 0186d831-2718-403e-50e4-5cb331ec3213 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 119.2192ms + - id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - 507b3f67-511f-9aa7-0c31-7ce95b92e9ca + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 12:55: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: + - 36dbf414-689a-4a55-5e49-c92523557c89 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 327.8458ms diff --git a/internal/provider/fixtures/datasource_subaccount_service_instances_namefilter.yaml b/internal/provider/fixtures/datasource_subaccount_service_instances_namefilter.yaml new file mode 100644 index 00000000..350a9752 --- /dev/null +++ b/internal/provider/fixtures/datasource_subaccount_service_instances_namefilter.yaml @@ -0,0 +1,1145 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - 1bb86678-6633-6892-ef2d-feda9b219e65 + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 12:55: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-Frame-Options: + - DENY + X-Vcap-Request-Id: + - 4c2d1785-3072-4ec0-611d-eca252b1ad35 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 368.4117ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 105 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"fieldsFilter":"usable eq 'false'","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.1 terraform-provider-btp/dev + X-Correlationid: + - cab1f0a7-672e-8436-2a8c-571e5c3ba0f3 + 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/services/instance?list + 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, 07 Jul 2023 12:55:24 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/instance?list + 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-services-4ie3yr1a + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - 8137c967-f3f7-4bcb-76b2-d6d536d16219 + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 191.0698ms + - id: 2 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 105 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"fieldsFilter":"usable eq 'false'","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + 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 + X-Correlationid: + - cab1f0a7-672e-8436-2a8c-571e5c3ba0f3 + X-Cpcli-Customidp: + - "" + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-services-4ie3yr1a + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/instance?list + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '[]' + headers: + Cache-Control: + - no-cache, no-store, max-age=0, must-revalidate + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 12:55: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 + X-Cpcli-Backend-Status: + - "200" + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Replacementrefreshtoken: + - redacted + X-Frame-Options: + - DENY + X-Vcap-Request-Id: + - e39a0180-3f6b-419b-4601-a2b8cbb34045 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 140.5837ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - e2299720-771c-6e8c-d6ca-ec853d6f7334 + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 12:55:25 GMT + Expires: + - "0" + Pragma: + - no-cache + Referrer-Policy: + - no-referrer + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload; + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Vcap-Request-Id: + - c2d14912-0564-4a3a-6123-688cdef971c9 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 374.8124ms + - id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 105 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"fieldsFilter":"usable eq 'false'","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.1 terraform-provider-btp/dev + X-Correlationid: + - f43e9ce8-5459-73f3-78cd-d52e057c3d4f + 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/services/instance?list + 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, 07 Jul 2023 12:55:25 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/instance?list + 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-services-4ie3yr1a + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - 429eccdc-cd28-4c80-5075-ce590e10586a + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 199.0633ms + - id: 5 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 105 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"fieldsFilter":"usable eq 'false'","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + 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 + X-Correlationid: + - f43e9ce8-5459-73f3-78cd-d52e057c3d4f + X-Cpcli-Customidp: + - "" + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-services-4ie3yr1a + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/instance?list + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '[]' + headers: + Cache-Control: + - no-cache, no-store, max-age=0, must-revalidate + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 12:55:25 GMT + Expires: + - "0" + Pragma: + - no-cache + Referrer-Policy: + - no-referrer + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload; + X-Content-Type-Options: + - nosniff + X-Cpcli-Backend-Mediatype: + - application/json + X-Cpcli-Backend-Status: + - "200" + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Replacementrefreshtoken: + - redacted + X-Frame-Options: + - DENY + X-Vcap-Request-Id: + - eb28143f-727e-4cac-46fc-87f5e71b5810 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 137.6174ms + - id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - e793c706-7ec3-598a-4104-ab36cb83a95e + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 12:55: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: + - fe1504bd-8c44-41df-63ef-2870e78288be + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 353.9889ms + - id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 105 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"fieldsFilter":"usable eq 'false'","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.1 terraform-provider-btp/dev + X-Correlationid: + - 697aeb0b-e79c-ef5f-b69c-2d8431266045 + 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/services/instance?list + 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, 07 Jul 2023 12:55:26 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/instance?list + 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-services-4ie3yr1a + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - e19d4f1b-8da0-4398-6da9-b7c7b2d4f1ac + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 196.7588ms + - id: 8 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 105 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"fieldsFilter":"usable eq 'false'","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + 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 + X-Correlationid: + - 697aeb0b-e79c-ef5f-b69c-2d8431266045 + X-Cpcli-Customidp: + - "" + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-services-4ie3yr1a + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/instance?list + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '[]' + headers: + Cache-Control: + - no-cache, no-store, max-age=0, must-revalidate + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 12:55:26 GMT + Expires: + - "0" + Pragma: + - no-cache + Referrer-Policy: + - no-referrer + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload; + X-Content-Type-Options: + - nosniff + X-Cpcli-Backend-Mediatype: + - application/json + X-Cpcli-Backend-Status: + - "200" + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Replacementrefreshtoken: + - redacted + X-Frame-Options: + - DENY + X-Vcap-Request-Id: + - 445ff39d-4059-4c66-4477-410e142ca99a + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 131.1504ms + - id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - dcd3db80-a200-8d76-7630-c91f898a5923 + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 12:55: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: + - c006813e-a64a-49c7-5783-6a2a376ff30d + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 341.6786ms + - id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 105 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"fieldsFilter":"usable eq 'false'","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.1 terraform-provider-btp/dev + X-Correlationid: + - 19d1178e-35a8-5510-903f-2578a82ef8c2 + 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/services/instance?list + 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, 07 Jul 2023 12:55:27 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/instance?list + 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-services-4ie3yr1a + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - 230f334d-2818-4ee6-4356-35819a1e7d45 + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 205.2477ms + - id: 11 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 105 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"fieldsFilter":"usable eq 'false'","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + 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 + X-Correlationid: + - 19d1178e-35a8-5510-903f-2578a82ef8c2 + X-Cpcli-Customidp: + - "" + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-services-4ie3yr1a + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/instance?list + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '[]' + headers: + Cache-Control: + - no-cache, no-store, max-age=0, must-revalidate + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 12:55:27 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: + - 9848f9d5-f5e0-4d4d-5be3-570d47f04d99 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 93.9734ms + - id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - 2b999ba0-8a0e-ac1a-1dfc-d6f2b0440bdd + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 12:55:27 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: + - c4454954-5dcd-4e49-777e-2493fd38d15d + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 357.3487ms + - id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 105 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"fieldsFilter":"usable eq 'false'","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.1 terraform-provider-btp/dev + X-Correlationid: + - 632064cc-3b95-e04d-e3b7-f53f912952ca + 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/services/instance?list + 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, 07 Jul 2023 12:55:27 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/instance?list + 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-services-4ie3yr1a + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - 12b1273c-642c-441b-465e-bf204168aeca + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 163.2722ms + - id: 14 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 105 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"fieldsFilter":"usable eq 'false'","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + 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 + X-Correlationid: + - 632064cc-3b95-e04d-e3b7-f53f912952ca + X-Cpcli-Customidp: + - "" + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-services-4ie3yr1a + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/instance?list + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '[]' + headers: + Cache-Control: + - no-cache, no-store, max-age=0, must-revalidate + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 12:55:27 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: + - 9a7d2784-a224-4bd1-5934-d6c47013735f + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 112.7753ms + - id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - a328228b-0b6a-c21b-b429-0b8a9137ec3f + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 12:55: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: + - a1905996-1768-43bf-6a5a-f55c4dd30828 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 361.4795ms diff --git a/internal/provider/fixtures/datasource_subaccount_service_instances_namefilter_variant.yaml b/internal/provider/fixtures/datasource_subaccount_service_instances_namefilter_variant.yaml new file mode 100644 index 00000000..0e1fb34d --- /dev/null +++ b/internal/provider/fixtures/datasource_subaccount_service_instances_namefilter_variant.yaml @@ -0,0 +1,1145 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - 86fe16a3-12cc-f53e-f004-f7fb12042cee + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 12:55: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: + - 2c3eed66-e286-4522-5826-73ddd491b5b8 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 335.1654ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 104 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"fieldsFilter":"usable eq 'true'","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.1 terraform-provider-btp/dev + X-Correlationid: + - d452fa5b-271f-7b66-47e2-7e48119247ac + 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/services/instance?list + 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, 07 Jul 2023 12:55:29 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/instance?list + 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-services-4ie3yr1a + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - 74b49f3f-f4ae-4ac7-61ba-05f6c7160722 + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 207.5546ms + - id: 2 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 104 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"fieldsFilter":"usable eq 'true'","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + 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 + X-Correlationid: + - d452fa5b-271f-7b66-47e2-7e48119247ac + X-Cpcli-Customidp: + - "" + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-services-4ie3yr1a + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/instance?list + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '[{"id":"b6a7d7da-41f4-4dfc-a883-fde826c2e9f9","ready":true,"name":"tf-testacc-iban-sample","service_plan_id":"93481392-dadf-4520-ada2-b0852127a1e5","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","crm_customer_id":"","origin":"sapcp","zone_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subdomain":"integration-test-services-4ie3yr1a","region":"cf-eu12","instance_name":"tf-testacc-iban-sample"},"usable":true,"subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","protected":null,"created_at":"2023-07-07T11:49:41.166537Z","updated_at":"2023-07-07T12:33:59.95431Z","labels":"org = testvalue; subaccount_id = 59cd458e-e66e-4b60-b6d8-8f219379f9a5"},{"id":"df532d07-57a7-415e-a261-23a398ef068a","ready":true,"name":"tf-testacc-alertnotification-instance","service_plan_id":"f0aac855-474d-4016-9529-61c062efbc7c","platform_id":"service-manager","context":{"platform":"sapcp","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","origin":"sapcp","license_type":"SAPDEV","crm_customer_id":"","instance_name":"tf-testacc-alertnotification-instance"},"usable":true,"subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","protected":null,"created_at":"2023-07-07T11:52:51.049151Z","updated_at":"2023-07-07T11:52:51.588882Z","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: + - Fri, 07 Jul 2023 12:55:29 GMT + Expires: + - "0" + Pragma: + - no-cache + Referrer-Policy: + - no-referrer + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload; + X-Content-Type-Options: + - nosniff + X-Cpcli-Backend-Mediatype: + - application/json + X-Cpcli-Backend-Status: + - "200" + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Replacementrefreshtoken: + - redacted + X-Frame-Options: + - DENY + X-Vcap-Request-Id: + - 416a8bdc-2b67-49a7-5fbf-52663e693c28 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 117.4802ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - f62d71b9-4070-9855-fd63-2253f08b3baf + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 12:55: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: + - a8021326-2d85-4ff7-477c-0b07e3d8ef71 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 381.1999ms + - id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 104 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"fieldsFilter":"usable eq 'true'","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.1 terraform-provider-btp/dev + X-Correlationid: + - e87492eb-04c8-81e7-7e73-ca2fef6322cf + 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/services/instance?list + 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, 07 Jul 2023 12:55:29 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/instance?list + 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-services-4ie3yr1a + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - 81991f2b-7b88-458b-4d34-65ab77422947 + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 179.5093ms + - id: 5 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 104 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"fieldsFilter":"usable eq 'true'","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + 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 + X-Correlationid: + - e87492eb-04c8-81e7-7e73-ca2fef6322cf + X-Cpcli-Customidp: + - "" + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-services-4ie3yr1a + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/instance?list + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '[{"id":"b6a7d7da-41f4-4dfc-a883-fde826c2e9f9","ready":true,"name":"tf-testacc-iban-sample","service_plan_id":"93481392-dadf-4520-ada2-b0852127a1e5","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","crm_customer_id":"","origin":"sapcp","zone_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subdomain":"integration-test-services-4ie3yr1a","region":"cf-eu12","instance_name":"tf-testacc-iban-sample"},"usable":true,"subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","protected":null,"created_at":"2023-07-07T11:49:41.166537Z","updated_at":"2023-07-07T12:33:59.95431Z","labels":"org = testvalue; subaccount_id = 59cd458e-e66e-4b60-b6d8-8f219379f9a5"},{"id":"df532d07-57a7-415e-a261-23a398ef068a","ready":true,"name":"tf-testacc-alertnotification-instance","service_plan_id":"f0aac855-474d-4016-9529-61c062efbc7c","platform_id":"service-manager","context":{"platform":"sapcp","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","origin":"sapcp","license_type":"SAPDEV","crm_customer_id":"","instance_name":"tf-testacc-alertnotification-instance"},"usable":true,"subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","protected":null,"created_at":"2023-07-07T11:52:51.049151Z","updated_at":"2023-07-07T11:52:51.588882Z","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: + - Fri, 07 Jul 2023 12:55:29 GMT + Expires: + - "0" + Pragma: + - no-cache + Referrer-Policy: + - no-referrer + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload; + X-Content-Type-Options: + - nosniff + X-Cpcli-Backend-Mediatype: + - application/json + X-Cpcli-Backend-Status: + - "200" + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Replacementrefreshtoken: + - redacted + X-Frame-Options: + - DENY + X-Vcap-Request-Id: + - 04cc9429-7e7d-453e-54eb-b40dfe957b61 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 121.264ms + - id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - 36ca3fe8-eb53-33f6-c250-f4643f7a976b + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 12:55: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: + - baf1bb32-14d2-47fa-43ce-3299741f3b66 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 352.3817ms + - id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 104 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"fieldsFilter":"usable eq 'true'","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.1 terraform-provider-btp/dev + X-Correlationid: + - 80c72385-f7c7-f6f8-0520-9d07bd92ad03 + 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/services/instance?list + 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, 07 Jul 2023 12:55:30 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/instance?list + 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-services-4ie3yr1a + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - 218fe2a8-1e30-4a85-76a4-bb1ab22b9157 + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 203.4207ms + - id: 8 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 104 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"fieldsFilter":"usable eq 'true'","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + 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 + X-Correlationid: + - 80c72385-f7c7-f6f8-0520-9d07bd92ad03 + X-Cpcli-Customidp: + - "" + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-services-4ie3yr1a + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/instance?list + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '[{"id":"b6a7d7da-41f4-4dfc-a883-fde826c2e9f9","ready":true,"name":"tf-testacc-iban-sample","service_plan_id":"93481392-dadf-4520-ada2-b0852127a1e5","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","crm_customer_id":"","origin":"sapcp","zone_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subdomain":"integration-test-services-4ie3yr1a","region":"cf-eu12","instance_name":"tf-testacc-iban-sample"},"usable":true,"subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","protected":null,"created_at":"2023-07-07T11:49:41.166537Z","updated_at":"2023-07-07T12:33:59.95431Z","labels":"org = testvalue; subaccount_id = 59cd458e-e66e-4b60-b6d8-8f219379f9a5"},{"id":"df532d07-57a7-415e-a261-23a398ef068a","ready":true,"name":"tf-testacc-alertnotification-instance","service_plan_id":"f0aac855-474d-4016-9529-61c062efbc7c","platform_id":"service-manager","context":{"platform":"sapcp","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","origin":"sapcp","license_type":"SAPDEV","crm_customer_id":"","instance_name":"tf-testacc-alertnotification-instance"},"usable":true,"subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","protected":null,"created_at":"2023-07-07T11:52:51.049151Z","updated_at":"2023-07-07T11:52:51.588882Z","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: + - Fri, 07 Jul 2023 12:55: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-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: + - 041ff884-dd46-4c75-4072-a991a130dcfc + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 118.8107ms + - id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - 7b8118b7-a993-c1e0-5d03-56a16a3c85d4 + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 12:55: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: + - 5758df18-3999-49ec-6cda-e815ad8106d4 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 350.8428ms + - id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 104 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"fieldsFilter":"usable eq 'true'","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.1 terraform-provider-btp/dev + X-Correlationid: + - 2766ccf7-4829-c2d0-0f22-cbdd4bc0df42 + 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/services/instance?list + 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, 07 Jul 2023 12:55:31 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/instance?list + 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-services-4ie3yr1a + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - a680a39c-9acc-4aaf-5214-e94845184db7 + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 203.4752ms + - id: 11 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 104 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"fieldsFilter":"usable eq 'true'","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + 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 + X-Correlationid: + - 2766ccf7-4829-c2d0-0f22-cbdd4bc0df42 + X-Cpcli-Customidp: + - "" + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-services-4ie3yr1a + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/instance?list + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '[{"id":"b6a7d7da-41f4-4dfc-a883-fde826c2e9f9","ready":true,"name":"tf-testacc-iban-sample","service_plan_id":"93481392-dadf-4520-ada2-b0852127a1e5","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","crm_customer_id":"","origin":"sapcp","zone_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subdomain":"integration-test-services-4ie3yr1a","region":"cf-eu12","instance_name":"tf-testacc-iban-sample"},"usable":true,"subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","protected":null,"created_at":"2023-07-07T11:49:41.166537Z","updated_at":"2023-07-07T12:33:59.95431Z","labels":"org = testvalue; subaccount_id = 59cd458e-e66e-4b60-b6d8-8f219379f9a5"},{"id":"df532d07-57a7-415e-a261-23a398ef068a","ready":true,"name":"tf-testacc-alertnotification-instance","service_plan_id":"f0aac855-474d-4016-9529-61c062efbc7c","platform_id":"service-manager","context":{"platform":"sapcp","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","origin":"sapcp","license_type":"SAPDEV","crm_customer_id":"","instance_name":"tf-testacc-alertnotification-instance"},"usable":true,"subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","protected":null,"created_at":"2023-07-07T11:52:51.049151Z","updated_at":"2023-07-07T11:52:51.588882Z","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: + - Fri, 07 Jul 2023 12:55:31 GMT + Expires: + - "0" + Pragma: + - no-cache + Referrer-Policy: + - no-referrer + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload; + X-Content-Type-Options: + - nosniff + X-Cpcli-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: + - 4a65eb76-a34c-42d8-5fad-f740c8c4ab09 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 101.5633ms + - id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - ef00d39d-0803-ad20-0afa-353f30dec860 + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 12:55: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: + - 7936d26b-7670-4ece-628a-58e3013ddc68 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 374.0214ms + - id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 104 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"fieldsFilter":"usable eq 'true'","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.1 terraform-provider-btp/dev + X-Correlationid: + - a49f7560-5483-7957-0e55-18eb88fc5aa5 + 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/services/instance?list + 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, 07 Jul 2023 12:55:32 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/instance?list + 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-services-4ie3yr1a + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - 694b76c8-5f1d-46ea-6357-e55a2a3928ae + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 179.604ms + - id: 14 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 104 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"fieldsFilter":"usable eq 'true'","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + 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 + X-Correlationid: + - a49f7560-5483-7957-0e55-18eb88fc5aa5 + X-Cpcli-Customidp: + - "" + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-services-4ie3yr1a + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/instance?list + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '[{"id":"b6a7d7da-41f4-4dfc-a883-fde826c2e9f9","ready":true,"name":"tf-testacc-iban-sample","service_plan_id":"93481392-dadf-4520-ada2-b0852127a1e5","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","crm_customer_id":"","origin":"sapcp","zone_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","subdomain":"integration-test-services-4ie3yr1a","region":"cf-eu12","instance_name":"tf-testacc-iban-sample"},"usable":true,"subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","protected":null,"created_at":"2023-07-07T11:49:41.166537Z","updated_at":"2023-07-07T12:33:59.95431Z","labels":"org = testvalue; subaccount_id = 59cd458e-e66e-4b60-b6d8-8f219379f9a5"},{"id":"df532d07-57a7-415e-a261-23a398ef068a","ready":true,"name":"tf-testacc-alertnotification-instance","service_plan_id":"f0aac855-474d-4016-9529-61c062efbc7c","platform_id":"service-manager","context":{"platform":"sapcp","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","origin":"sapcp","license_type":"SAPDEV","crm_customer_id":"","instance_name":"tf-testacc-alertnotification-instance"},"usable":true,"subaccount_id":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","protected":null,"created_at":"2023-07-07T11:52:51.049151Z","updated_at":"2023-07-07T11:52:51.588882Z","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: + - Fri, 07 Jul 2023 12:55: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: + - "200" + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Replacementrefreshtoken: + - redacted + X-Frame-Options: + - DENY + X-Vcap-Request-Id: + - c7c803ca-7935-48b8-7f47-1d9b6835024f + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 143.0365ms + - id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - 104a57e7-e932-eb76-0af0-c90c4deaf0f8 + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 12:55: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-Frame-Options: + - DENY + X-Vcap-Request-Id: + - f95fd66f-ac12-4496-6bc5-a966e90b82b1 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 347.2284ms diff --git a/internal/provider/fixtures/datasource_subaccount_service_offering_by_id.yaml b/internal/provider/fixtures/datasource_subaccount_service_offering_by_id.yaml new file mode 100644 index 00000000..f6c715dd --- /dev/null +++ b/internal/provider/fixtures/datasource_subaccount_service_offering_by_id.yaml @@ -0,0 +1,1145 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - 7b741de1-3190-8142-371b-910d1cd9bac6 + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 10:53: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: + - 479ee4d8-7843-416d-7d06-d766fb8e4db4 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 553.3243ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 114 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"id":"d67ff82d-9bfe-43e3-abd2-f2e21a5362c5","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.1 terraform-provider-btp/dev + X-Correlationid: + - 2dd7a6b1-df9a-f669-f299-64faed0b5dd5 + 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/services/offering?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, 07 Jul 2023 10:53:41 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/offering?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-services-4ie3yr1a + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - 5851ebeb-9895-4550-5b7e-ebf2df5fbd79 + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 235.6442ms + - id: 2 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 114 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"id":"d67ff82d-9bfe-43e3-abd2-f2e21a5362c5","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + 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 + X-Correlationid: + - 2dd7a6b1-df9a-f669-f299-64faed0b5dd5 + X-Cpcli-Customidp: + - "" + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-services-4ie3yr1a + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/offering?get + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + 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"}' + 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 + 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: + - 3a6918a2-092d-40b4-46ae-ee40c0aa31cc + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 265.7637ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - 9a2ff293-c4c9-925d-420a-8c382a20f6ba + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 10:53: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-Frame-Options: + - DENY + X-Vcap-Request-Id: + - 6d748873-52da-43b4-4c69-707b6dad871e + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 378.0762ms + - id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 114 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"id":"d67ff82d-9bfe-43e3-abd2-f2e21a5362c5","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.1 terraform-provider-btp/dev + X-Correlationid: + - 464de350-61d7-8c30-cde9-ee74aecef624 + 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/services/offering?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, 07 Jul 2023 10:53:42 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/offering?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-services-4ie3yr1a + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - 601580e4-4c70-4847-5cd1-8b44102be01c + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 193.5566ms + - id: 5 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 114 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"id":"d67ff82d-9bfe-43e3-abd2-f2e21a5362c5","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + 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 + X-Correlationid: + - 464de350-61d7-8c30-cde9-ee74aecef624 + X-Cpcli-Customidp: + - "" + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-services-4ie3yr1a + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/offering?get + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + 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"}' + 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 + 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: + - 3bfe00ac-51ae-4e83-62ee-c80a041424d0 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 185.3647ms + - id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - c91f329a-7f2a-149d-db1d-5be6a46b4ad5 + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 10:53:43 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: + - e9b079dc-2216-4401-70ef-28828df383d9 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 354.5331ms + - id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 114 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"id":"d67ff82d-9bfe-43e3-abd2-f2e21a5362c5","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.1 terraform-provider-btp/dev + X-Correlationid: + - 28601862-a655-d277-787f-c385e9722a18 + 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/services/offering?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, 07 Jul 2023 10:53:43 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/offering?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-services-4ie3yr1a + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - b60b31ad-d179-4f1f-531a-dbce1615714d + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 179.9486ms + - id: 8 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 114 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"id":"d67ff82d-9bfe-43e3-abd2-f2e21a5362c5","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + 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 + X-Correlationid: + - 28601862-a655-d277-787f-c385e9722a18 + X-Cpcli-Customidp: + - "" + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-services-4ie3yr1a + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/offering?get + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + 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"}' + 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 + 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: + - 55440e34-4c1f-41c2-75de-a4b7156426ee + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 161.3324ms + - id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - 24e247f8-ea9b-839b-4355-a2e64411ef51 + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 10:53: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-Frame-Options: + - DENY + X-Vcap-Request-Id: + - 12944e41-18db-4ca9-692d-de4a234503ae + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 430.299ms + - id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 114 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"id":"d67ff82d-9bfe-43e3-abd2-f2e21a5362c5","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.1 terraform-provider-btp/dev + X-Correlationid: + - fb861a08-0025-6f30-821a-f099cb783c51 + 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/services/offering?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, 07 Jul 2023 10:53:44 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/offering?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-services-4ie3yr1a + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - f3fc1803-8660-47ac-7d29-62467d8deb10 + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 214.8595ms + - id: 11 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 114 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"id":"d67ff82d-9bfe-43e3-abd2-f2e21a5362c5","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + 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 + X-Correlationid: + - fb861a08-0025-6f30-821a-f099cb783c51 + X-Cpcli-Customidp: + - "" + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-services-4ie3yr1a + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/offering?get + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + 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"}' + 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 + 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: + - 23b36bcf-9687-44be-541a-a8977c279714 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 170.4266ms + - id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - 6cbb7ce5-a69a-325c-56b2-90d6699ec451 + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 10:53: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-Frame-Options: + - DENY + X-Vcap-Request-Id: + - 963e5daa-ca30-490c-7ba4-84ea56dc4208 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 401.674ms + - id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 114 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"id":"d67ff82d-9bfe-43e3-abd2-f2e21a5362c5","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.1 terraform-provider-btp/dev + X-Correlationid: + - 166b99db-7e45-d1de-098d-240167ff1922 + 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/services/offering?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, 07 Jul 2023 10:53:45 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/offering?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-services-4ie3yr1a + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - 5dbfa5f9-e71c-42ac-7793-8b4ed13c380b + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 163.1039ms + - id: 14 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 114 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"id":"d67ff82d-9bfe-43e3-abd2-f2e21a5362c5","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + 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 + X-Correlationid: + - 166b99db-7e45-d1de-098d-240167ff1922 + X-Cpcli-Customidp: + - "" + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-services-4ie3yr1a + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/offering?get + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + 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"}' + 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 + 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: + - 60a3ffd0-1e10-4743-7208-209da81907f2 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 149.2989ms + - id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - aaac332d-a0e3-518b-ab7f-c0e6af9265f0 + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 10:53: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-Frame-Options: + - DENY + X-Vcap-Request-Id: + - 0624ec5d-3561-4c00-7d7f-4a288db8147a + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 391.3328ms diff --git a/internal/provider/fixtures/datasource_subaccount_service_offering_by_name.yaml b/internal/provider/fixtures/datasource_subaccount_service_offering_by_name.yaml new file mode 100644 index 00000000..728fffbf --- /dev/null +++ b/internal/provider/fixtures/datasource_subaccount_service_offering_by_name.yaml @@ -0,0 +1,1145 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - d349b419-75b9-5225-65e5-71d08aab5026 + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 10:53:46 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: + - 4bd524f5-8833-4fcd-57b4-2140e656ad53 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 373.0329ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 85 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"name":"xsuaa","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.1 terraform-provider-btp/dev + X-Correlationid: + - cbbb4941-850c-0c26-cb0e-4ee265c306eb + 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/services/offering?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, 07 Jul 2023 10:53:46 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/offering?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-services-4ie3yr1a + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - c84a2204-1405-453b-45a6-234d7212e195 + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 196.7434ms + - id: 2 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 85 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"name":"xsuaa","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + 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 + X-Correlationid: + - cbbb4941-850c-0c26-cb0e-4ee265c306eb + X-Cpcli-Customidp: + - "" + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-services-4ie3yr1a + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/offering?get + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + 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"}' + 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 + 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: + - f9bc954b-1569-43fd-69f4-98b046e9540d + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 163.0772ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - 40906ff3-ba16-510f-669a-a58fe4b9517d + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 10:53:47 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: + - 82008f06-059b-4c59-7c52-45930f8c8803 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 382.8132ms + - id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 85 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"name":"xsuaa","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.1 terraform-provider-btp/dev + X-Correlationid: + - 33106f62-d706-e5c2-a9b1-bef69db31db0 + 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/services/offering?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, 07 Jul 2023 10:53:47 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/offering?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-services-4ie3yr1a + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - 94485e12-3f8e-41a2-6637-168ae5af1554 + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 184.9255ms + - id: 5 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 85 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"name":"xsuaa","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + 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 + X-Correlationid: + - 33106f62-d706-e5c2-a9b1-bef69db31db0 + X-Cpcli-Customidp: + - "" + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-services-4ie3yr1a + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/offering?get + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + 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"}' + 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 + 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: + - c9ba43cd-f525-4fcf-7a35-6b45340ed69d + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 199.6196ms + - id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - b9bf13ff-2fb4-5176-9ee5-20e0a0635d41 + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 10:53:48 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: + - 49a32ccd-285e-4384-7f15-1fe5964dcbe6 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 363.4701ms + - id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 85 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"name":"xsuaa","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.1 terraform-provider-btp/dev + X-Correlationid: + - 5be640c4-ad92-1b0e-28f9-10a98d30a8c0 + 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/services/offering?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, 07 Jul 2023 10:53:48 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/offering?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-services-4ie3yr1a + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - fa964691-5081-4a00-4b3d-7f2f282249e8 + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 184.9847ms + - id: 8 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 85 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"name":"xsuaa","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + 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 + X-Correlationid: + - 5be640c4-ad92-1b0e-28f9-10a98d30a8c0 + X-Cpcli-Customidp: + - "" + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-services-4ie3yr1a + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/offering?get + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + 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"}' + 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 + 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: + - bbf2ff95-7284-4e18-4087-4354ddd86ae3 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 179.1993ms + - id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - 98e61a42-e39d-bdae-b4d6-f435bef35f9a + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 10:53:48 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: + - 1fe504f3-8692-40b2-6632-051cd6f25f0e + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 381.0958ms + - id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 85 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"name":"xsuaa","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.1 terraform-provider-btp/dev + X-Correlationid: + - df59565d-08eb-9a9b-6c3d-59a547502131 + 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/services/offering?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, 07 Jul 2023 10:53:49 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/offering?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-services-4ie3yr1a + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - b2e69246-612a-4c93-58b3-68fb47cf27c7 + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 183.5674ms + - id: 11 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 85 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"name":"xsuaa","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + 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 + X-Correlationid: + - df59565d-08eb-9a9b-6c3d-59a547502131 + X-Cpcli-Customidp: + - "" + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-services-4ie3yr1a + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/offering?get + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + 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"}' + 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 + 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: + - df850081-5eec-440b-51d6-492b253c9015 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 175.5483ms + - id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - a0c6fe16-c1c5-4bc3-0a01-3b8f3781c05c + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 10:53:49 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: + - 529bfafa-145a-4867-4e2d-618e5cf35d26 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 348.332ms + - id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 85 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"name":"xsuaa","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.1 terraform-provider-btp/dev + X-Correlationid: + - dc3e6248-0ed6-c4dc-3671-89fd488d8842 + 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/services/offering?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, 07 Jul 2023 10:53:49 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/offering?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-services-4ie3yr1a + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - bb889574-e309-486e-5fae-d290f2b09faa + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 206.5203ms + - id: 14 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 85 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"name":"xsuaa","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + 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 + X-Correlationid: + - dc3e6248-0ed6-c4dc-3671-89fd488d8842 + X-Cpcli-Customidp: + - "" + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-services-4ie3yr1a + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/offering?get + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + 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"}' + 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 + 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: + - 6f62aabd-a30e-4713-442b-c7d1e7d24049 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 209.2175ms + - id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - eb84a777-d5b3-b5b5-c3a0-fba9058b5fd6 + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 10:53:50 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: + - 905819fb-7fcc-4872-4b9b-b020d0e06f79 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 362.2424ms diff --git a/internal/provider/fixtures/datasource_subaccount_service_offerings_all.yaml b/internal/provider/fixtures/datasource_subaccount_service_offerings_all.yaml new file mode 100644 index 00000000..75aed11c --- /dev/null +++ b/internal/provider/fixtures/datasource_subaccount_service_offerings_all.yaml @@ -0,0 +1,1145 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - 7c3dd625-ed15-8d84-19e9-64d0fc0e9b34 + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 06:43: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: + - 5698eafb-1ac3-4d62-7dfa-91f53a352f92 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 557.3766ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 70 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.1 terraform-provider-btp/dev + X-Correlationid: + - 987ecaa9-09c1-829f-b387-8d43e7c056f1 + 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/services/offering?list + 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, 07 Jul 2023 06:43:32 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/offering?list + 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-services-4ie3yr1a + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - 5c896770-cf88-4124-7d44-2e50d4a88843 + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 280.6911ms + - id: 2 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 70 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + 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 + X-Correlationid: + - 987ecaa9-09c1-829f-b387-8d43e7c056f1 + X-Cpcli-Customidp: + - "" + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-services-4ie3yr1a + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/offering?list + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + 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,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"},"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,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","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"}]' + 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 + 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: + - 81b8b84b-ea4c-48cb-6c00-9ade1d6a6233 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 247.7508ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - 7cb192c1-4e1e-353f-ec69-8921d8bf44c7 + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 06:43: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-Frame-Options: + - DENY + X-Vcap-Request-Id: + - b440cdd1-6ccf-4615-57e8-cb3e120c35ba + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 435.5075ms + - id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 70 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.1 terraform-provider-btp/dev + X-Correlationid: + - 493ef4ca-e503-a51f-8b55-71f179ea1802 + 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/services/offering?list + 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, 07 Jul 2023 06:43:33 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/offering?list + 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-services-4ie3yr1a + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - e22fb0c5-852a-4d42-7a47-387b2da08152 + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 184.9812ms + - id: 5 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 70 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + 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 + X-Correlationid: + - 493ef4ca-e503-a51f-8b55-71f179ea1802 + X-Cpcli-Customidp: + - "" + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-services-4ie3yr1a + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/offering?list + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + 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,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"},"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,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","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"}]' + 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 + 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: + - e4885d36-898f-429c-5574-3351cc1bdd0c + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 149.4208ms + - id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - 1bf338bb-160d-3e2f-661f-a70461a45325 + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 06:43:33 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: + - 9064b96c-e5f7-4af1-550f-43d6fa56f22c + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 367.8082ms + - id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 70 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.1 terraform-provider-btp/dev + X-Correlationid: + - c1d5ce88-c7b5-f86b-a2e5-bb3130f649b7 + 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/services/offering?list + 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, 07 Jul 2023 06:43:33 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/offering?list + 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-services-4ie3yr1a + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - 4fa4ea72-be71-45a8-4f2b-1a956883d30e + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 194.7949ms + - id: 8 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 70 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + 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 + X-Correlationid: + - c1d5ce88-c7b5-f86b-a2e5-bb3130f649b7 + X-Cpcli-Customidp: + - "" + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-services-4ie3yr1a + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/offering?list + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + 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,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"},"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,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","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"}]' + 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 + 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: + - 1617fa2a-8657-4a8d-7819-b23ae3579a66 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 163.9293ms + - id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - d9447bc3-3ffe-ad43-1b51-00bd9bcb9c9d + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 06:43:34 GMT + Expires: + - "0" + Pragma: + - no-cache + Referrer-Policy: + - no-referrer + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload; + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Vcap-Request-Id: + - aec8fa7d-eebc-4fba-598d-c80bbb9d861b + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 410.2365ms + - id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 70 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.1 terraform-provider-btp/dev + X-Correlationid: + - bd16d1bb-d859-d012-0caf-72a3cec07f79 + 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/services/offering?list + 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, 07 Jul 2023 06:43:34 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/offering?list + 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-services-4ie3yr1a + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - f44ac20b-289a-4fb8-6357-5c34da2105a1 + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 165.9804ms + - id: 11 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 70 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + 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 + X-Correlationid: + - bd16d1bb-d859-d012-0caf-72a3cec07f79 + X-Cpcli-Customidp: + - "" + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-services-4ie3yr1a + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/offering?list + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + 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"}]' + 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 + 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: + - 18e67b65-7df5-4051-47f2-2cd0e79aeb74 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 175.6166ms + - id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - 99980c47-de18-7619-9dbc-0a78081338f5 + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 06:43: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-Frame-Options: + - DENY + X-Vcap-Request-Id: + - 1d79debd-ac1f-43af-75e7-9015942e4c90 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 386.5681ms + - id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 70 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.1 terraform-provider-btp/dev + X-Correlationid: + - 616d4ae6-036b-6032-38b9-d5c9db2d9b3e + 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/services/offering?list + 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, 07 Jul 2023 06:43:35 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/offering?list + 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-services-4ie3yr1a + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - b12e3da3-96ec-4105-65d8-ebc483797360 + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 186.6614ms + - id: 14 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 70 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + 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 + X-Correlationid: + - 616d4ae6-036b-6032-38b9-d5c9db2d9b3e + X-Cpcli-Customidp: + - "" + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-services-4ie3yr1a + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/offering?list + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + 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,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"},"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,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","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"}]' + 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 + 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: + - 3bd48953-73cc-452d-5a53-0b46841d3490 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 176.8592ms + - id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - 4aa5f3db-0378-b423-2abd-fbdd506a64f5 + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 06:43: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: + - 22a27244-f5df-4473-78d1-a26378b9c93e + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 446.7923ms diff --git a/internal/provider/fixtures/datasource_subaccount_service_offerings_by_environment.yaml b/internal/provider/fixtures/datasource_subaccount_service_offerings_by_environment.yaml new file mode 100644 index 00000000..db291265 --- /dev/null +++ b/internal/provider/fixtures/datasource_subaccount_service_offerings_by_environment.yaml @@ -0,0 +1,1145 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - 07e0518c-6531-0b2c-7355-923f1743ff32 + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 06:47:22 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: + - 17d33200-2657-4603-4d2f-423b85e58782 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 534.6508ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 99 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"environment":"cloudfoundry","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.1 terraform-provider-btp/dev + X-Correlationid: + - ecdee1cc-846c-730d-092a-5e934c167f29 + 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/services/offering?list + 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, 07 Jul 2023 06:47:22 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/offering?list + 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-services-4ie3yr1a + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - 3e311673-5f05-4ffd-4f0c-7be4e19d92ea + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 198.0318ms + - id: 2 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 99 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"environment":"cloudfoundry","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + 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 + X-Correlationid: + - ecdee1cc-846c-730d-092a-5e934c167f29 + X-Cpcli-Customidp: + - "" + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-services-4ie3yr1a + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/offering?list + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '[]' + headers: + Cache-Control: + - no-cache, no-store, max-age=0, must-revalidate + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 06:47:23 GMT + Expires: + - "0" + Pragma: + - no-cache + Referrer-Policy: + - no-referrer + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload; + X-Content-Type-Options: + - nosniff + X-Cpcli-Backend-Mediatype: + - application/json + X-Cpcli-Backend-Status: + - "200" + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Replacementrefreshtoken: + - redacted + X-Frame-Options: + - DENY + X-Vcap-Request-Id: + - 36fdb395-c6be-4203-63e5-632be8200b48 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 214.4253ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - 8e1ef733-6540-cdce-8627-756d1af1b7b1 + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 06:47:23 GMT + Expires: + - "0" + Pragma: + - no-cache + Referrer-Policy: + - no-referrer + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload; + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Vcap-Request-Id: + - 8bedf9b6-f558-45e0-7b8d-e7b339407fa5 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 451.795ms + - id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 99 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"environment":"cloudfoundry","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.1 terraform-provider-btp/dev + X-Correlationid: + - d69a2d60-363d-ebe0-eba5-a80f898416f7 + 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/services/offering?list + 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, 07 Jul 2023 06:47:23 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/offering?list + 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-services-4ie3yr1a + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - f4dd126e-56b3-44f2-7341-ef7c3de0f19c + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 186.3299ms + - id: 5 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 99 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"environment":"cloudfoundry","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + 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 + X-Correlationid: + - d69a2d60-363d-ebe0-eba5-a80f898416f7 + X-Cpcli-Customidp: + - "" + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-services-4ie3yr1a + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/offering?list + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '[]' + headers: + Cache-Control: + - no-cache, no-store, max-age=0, must-revalidate + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 06:47: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 + X-Cpcli-Backend-Status: + - "200" + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Replacementrefreshtoken: + - redacted + X-Frame-Options: + - DENY + X-Vcap-Request-Id: + - 164bbc7a-b1ab-45d2-4599-7aae0bdbbd9a + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 150.0327ms + - id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - c248faac-ebb0-f71f-a84f-8d1fb943959b + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 06:47: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-Frame-Options: + - DENY + X-Vcap-Request-Id: + - 0f4d658a-0203-406e-4edb-a47ba7175e63 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 397.497ms + - id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 99 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"environment":"cloudfoundry","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.1 terraform-provider-btp/dev + X-Correlationid: + - 94a6ed5c-82ab-18a9-c486-aa308bbdabff + 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/services/offering?list + 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, 07 Jul 2023 06:47:24 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/offering?list + 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-services-4ie3yr1a + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - e9c818ba-2091-4a99-4bc3-54e57b60ce99 + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 186.5048ms + - id: 8 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 99 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"environment":"cloudfoundry","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + 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 + X-Correlationid: + - 94a6ed5c-82ab-18a9-c486-aa308bbdabff + X-Cpcli-Customidp: + - "" + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-services-4ie3yr1a + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/offering?list + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '[]' + headers: + Cache-Control: + - no-cache, no-store, max-age=0, must-revalidate + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 06:47: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 + X-Cpcli-Backend-Status: + - "200" + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Replacementrefreshtoken: + - redacted + X-Frame-Options: + - DENY + X-Vcap-Request-Id: + - 59e50f9c-13e7-4f84-513a-ab7d09fea7ee + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 152.6247ms + - id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - a79bae45-2f36-90c8-0c95-7b9b76b30684 + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 06:47:25 GMT + Expires: + - "0" + Pragma: + - no-cache + Referrer-Policy: + - no-referrer + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload; + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Vcap-Request-Id: + - 85a001f3-ecda-4bd9-5197-99f24986424f + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 507.4371ms + - id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 99 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"environment":"cloudfoundry","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.1 terraform-provider-btp/dev + X-Correlationid: + - e2d47419-79f7-f592-e997-974ed80c7773 + 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/services/offering?list + 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, 07 Jul 2023 06:47:25 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/offering?list + 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-services-4ie3yr1a + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - 4dd648c3-2135-4b17-7c6d-e7f06d9e8769 + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 178.7913ms + - id: 11 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 99 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"environment":"cloudfoundry","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + 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 + X-Correlationid: + - e2d47419-79f7-f592-e997-974ed80c7773 + X-Cpcli-Customidp: + - "" + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-services-4ie3yr1a + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/offering?list + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '[]' + headers: + Cache-Control: + - no-cache, no-store, max-age=0, must-revalidate + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 06:47:25 GMT + Expires: + - "0" + Pragma: + - no-cache + Referrer-Policy: + - no-referrer + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload; + X-Content-Type-Options: + - nosniff + X-Cpcli-Backend-Mediatype: + - application/json + X-Cpcli-Backend-Status: + - "200" + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Replacementrefreshtoken: + - redacted + X-Frame-Options: + - DENY + X-Vcap-Request-Id: + - ecf8a0b1-e675-4e5d-5aa2-3b98f5ebf480 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 129.8671ms + - id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - 1d2633df-b95c-d764-bd76-ca01faaafe25 + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 06:47: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: + - ec23e676-84fb-4703-6dc8-46f441d2fea7 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 368.6067ms + - id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 99 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"environment":"cloudfoundry","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.1 terraform-provider-btp/dev + X-Correlationid: + - 0c5ee8fa-13b0-9cf8-803a-8a13294ffec6 + 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/services/offering?list + 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, 07 Jul 2023 06:47:26 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/offering?list + 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-services-4ie3yr1a + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - 9b41767c-8fd3-49fe-5fd5-99d29281e6a1 + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 171.0355ms + - id: 14 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 99 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"environment":"cloudfoundry","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + 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 + X-Correlationid: + - 0c5ee8fa-13b0-9cf8-803a-8a13294ffec6 + X-Cpcli-Customidp: + - "" + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-services-4ie3yr1a + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/offering?list + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '[]' + headers: + Cache-Control: + - no-cache, no-store, max-age=0, must-revalidate + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 06:47:26 GMT + Expires: + - "0" + Pragma: + - no-cache + Referrer-Policy: + - no-referrer + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload; + X-Content-Type-Options: + - nosniff + X-Cpcli-Backend-Mediatype: + - application/json + X-Cpcli-Backend-Status: + - "200" + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Replacementrefreshtoken: + - redacted + X-Frame-Options: + - DENY + X-Vcap-Request-Id: + - 866cfba5-3ba3-4096-5cdf-7104685c8539 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 148.7918ms + - id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - d35d7589-3c7a-bee4-4b6f-11b7bd2155d7 + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 06:47:27 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: + - 54b1dd78-c67f-45ae-50df-7202259b978e + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 439.6842ms diff --git a/internal/provider/fixtures/datasource_subaccount_service_offerings_namefilter.yaml b/internal/provider/fixtures/datasource_subaccount_service_offerings_namefilter.yaml new file mode 100644 index 00000000..84f46f7a --- /dev/null +++ b/internal/provider/fixtures/datasource_subaccount_service_offerings_namefilter.yaml @@ -0,0 +1,1145 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - 81b3e1fc-1f6e-3ea9-ea26-ce826789e3ab + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 07:12: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: + - 36fab7ac-c1c0-4eba-4bc5-1837d6393358 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 475.1714ms + - 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: | + {"paramValues":{"fieldsFilter":"name eq 'html5-apps-repo'","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.1 terraform-provider-btp/dev + X-Correlationid: + - 0d9776bf-4fa5-ce6f-4471-e9bbdcade6e0 + 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/services/offering?list + 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, 07 Jul 2023 07:12:40 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/offering?list + 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-services-4ie3yr1a + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - 82bd2e3a-904a-4a5a-4b55-ec98fed40f6a + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 289.6758ms + - id: 2 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 113 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"fieldsFilter":"name eq 'html5-apps-repo'","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + 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 + X-Correlationid: + - 0d9776bf-4fa5-ce6f-4471-e9bbdcade6e0 + X-Cpcli-Customidp: + - "" + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-services-4ie3yr1a + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/offering?list + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + 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"}]' + 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 + 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: + - 7b2a15fc-5de9-4d11-530d-2e8a1ce4ca50 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 242.672ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - 4635b563-e74b-b864-1ea8-2711eb444628 + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 07:12: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: + - 9859b1be-ec21-4a53-4323-21519446862f + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 399.269ms + - id: 4 + 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: | + {"paramValues":{"fieldsFilter":"name eq 'html5-apps-repo'","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.1 terraform-provider-btp/dev + X-Correlationid: + - bf751cda-fad7-38f3-e005-7bc24df2b064 + 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/services/offering?list + 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, 07 Jul 2023 07:12:41 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/offering?list + 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-services-4ie3yr1a + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - 4988de66-e205-49af-4653-987ba6970f0a + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 181.6361ms + - id: 5 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 113 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"fieldsFilter":"name eq 'html5-apps-repo'","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + 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 + X-Correlationid: + - bf751cda-fad7-38f3-e005-7bc24df2b064 + X-Cpcli-Customidp: + - "" + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-services-4ie3yr1a + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/offering?list + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + 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"}]' + 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 + 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: + - ad27cc6b-131e-4417-4bc7-d824e8039403 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 152.1199ms + - id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - 8a37be65-6673-9697-e9d0-75751a68e6a4 + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 07:12: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-Frame-Options: + - DENY + X-Vcap-Request-Id: + - df5deba5-c43b-44d4-5b6c-01ba99c0fa13 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 367.0574ms + - 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: | + {"paramValues":{"fieldsFilter":"name eq 'html5-apps-repo'","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.1 terraform-provider-btp/dev + X-Correlationid: + - 77d1dde4-e48d-5e38-070b-e4fa0cf48f1b + 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/services/offering?list + 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, 07 Jul 2023 07:12:42 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/offering?list + 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-services-4ie3yr1a + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - 1feb3fd6-cf73-478a-79ee-9191e1bb75a0 + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 210.0637ms + - id: 8 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 113 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"fieldsFilter":"name eq 'html5-apps-repo'","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + 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 + X-Correlationid: + - 77d1dde4-e48d-5e38-070b-e4fa0cf48f1b + X-Cpcli-Customidp: + - "" + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-services-4ie3yr1a + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/offering?list + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + 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"}]' + 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 + 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: + - bfa70488-e6e2-4223-6e20-4728d0a6543d + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 217.8561ms + - id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - 30edb005-6a30-cd5c-85c1-4dba0f3a99d8 + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 07:12:43 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: + - b022bb80-6475-449a-6821-1435e6c2ba74 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 408.017ms + - id: 10 + 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: | + {"paramValues":{"fieldsFilter":"name eq 'html5-apps-repo'","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.1 terraform-provider-btp/dev + X-Correlationid: + - 466c3a52-bb64-54ce-31b4-2fe97994c1f7 + 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/services/offering?list + 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, 07 Jul 2023 07:12:43 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/offering?list + 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-services-4ie3yr1a + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - f35adc62-1772-4cc8-51d8-4ae94736c817 + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 218.6808ms + - id: 11 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 113 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"fieldsFilter":"name eq 'html5-apps-repo'","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + 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 + X-Correlationid: + - 466c3a52-bb64-54ce-31b4-2fe97994c1f7 + X-Cpcli-Customidp: + - "" + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-services-4ie3yr1a + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/offering?list + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + 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"}]' + 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 + 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: + - d2d024eb-f20a-4d6d-7fc3-6aff39e61029 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 158.4317ms + - id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - 1224db5c-9ee0-3c48-a81a-b8b91cf80c2a + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 07:12: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-Frame-Options: + - DENY + X-Vcap-Request-Id: + - 060c4b2a-9f4e-436d-4ef3-ae341d4f2bff + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 363.7308ms + - 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: | + {"paramValues":{"fieldsFilter":"name eq 'html5-apps-repo'","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.1 terraform-provider-btp/dev + X-Correlationid: + - 7ec2e712-a2b8-7954-e4d0-a84d902151fa + 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/services/offering?list + 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, 07 Jul 2023 07:12:44 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/offering?list + 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-services-4ie3yr1a + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - d1ad2ae0-8d7c-47ef-544e-d0c82e120a09 + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 197.4608ms + - id: 14 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 113 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"fieldsFilter":"name eq 'html5-apps-repo'","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + 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 + X-Correlationid: + - 7ec2e712-a2b8-7954-e4d0-a84d902151fa + X-Cpcli-Customidp: + - "" + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-services-4ie3yr1a + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/offering?list + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + 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"}]' + 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 + 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: + - a21a6861-9b27-4a82-759f-948f823b66eb + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 136.2216ms + - id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - d35600c2-0f28-de31-ae5e-734c178cb441 + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 07:12: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-Frame-Options: + - DENY + X-Vcap-Request-Id: + - a912cdf1-6fd8-40cc-6c71-6f6f58179cb0 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 358.5909ms diff --git a/internal/provider/fixtures/datasource_subaccount_service_plan_by_id.yaml b/internal/provider/fixtures/datasource_subaccount_service_plan_by_id.yaml new file mode 100644 index 00000000..58bfd3c5 --- /dev/null +++ b/internal/provider/fixtures/datasource_subaccount_service_plan_by_id.yaml @@ -0,0 +1,1145 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - 2b12c86f-f4a8-56c8-0508-7a416d2c0a90 + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 13:01: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-Frame-Options: + - DENY + X-Vcap-Request-Id: + - 0330fd07-bdf5-4adf-41c8-2e8afe6d3f0f + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 763.5539ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 114 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"id":"cdf9c103-ef56-43e5-ac1d-4f1c5b15e05c","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.1 terraform-provider-btp/dev + X-Correlationid: + - 275ad3dd-c1f6-7d38-512d-a4f1bbae4df0 + 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/services/plan?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: + - Thu, 06 Jul 2023 13:01:03 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/plan?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-services-4ie3yr1a + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - 8cba70c1-c602-4a9a-4afc-882ac414102e + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 365.3486ms + - id: 2 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 114 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"id":"cdf9c103-ef56-43e5-ac1d-4f1c5b15e05c","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + 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 + X-Correlationid: + - 275ad3dd-c1f6-7d38-512d-a4f1bbae4df0 + X-Cpcli-Customidp: + - "" + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-services-4ie3yr1a + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/plan?get + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + 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"}' + 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 + 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: + - 06356c4e-fdc8-481d-43cc-2208856666ef + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 310.4816ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - baf137d2-7cff-8327-5ebf-a25b8ae12378 + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 13:01: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: + - 9550d958-a279-4af9-488a-7d843bed4abd + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 516.1574ms + - id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 114 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"id":"cdf9c103-ef56-43e5-ac1d-4f1c5b15e05c","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.1 terraform-provider-btp/dev + X-Correlationid: + - 31f75b07-6f3b-3bc0-030c-462a4cd4547f + 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/services/plan?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: + - Thu, 06 Jul 2023 13:01:05 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/plan?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-services-4ie3yr1a + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - 8e521892-48ac-4c01-6e90-bfb4e56a9412 + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 212.0607ms + - id: 5 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 114 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"id":"cdf9c103-ef56-43e5-ac1d-4f1c5b15e05c","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + 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 + X-Correlationid: + - 31f75b07-6f3b-3bc0-030c-462a4cd4547f + X-Cpcli-Customidp: + - "" + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-services-4ie3yr1a + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/plan?get + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + 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"}' + 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 + 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: + - 5bcdfd83-907d-4dce-6264-c9ddd07b99d7 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 133.9704ms + - id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - d5e4767a-233f-8092-c658-6b8577f82311 + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 13:01: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: + - 1ef5d1d6-e48e-483d-7239-c89503dd58f8 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 451.4346ms + - id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 114 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"id":"cdf9c103-ef56-43e5-ac1d-4f1c5b15e05c","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.1 terraform-provider-btp/dev + X-Correlationid: + - a2122a3f-d986-be5e-255a-c4c3aa080cfd + 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/services/plan?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: + - Thu, 06 Jul 2023 13:01:06 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/plan?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-services-4ie3yr1a + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - b929b4b9-d569-4517-68dc-2a36a6e1eb8c + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 200.1627ms + - id: 8 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 114 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"id":"cdf9c103-ef56-43e5-ac1d-4f1c5b15e05c","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + 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 + X-Correlationid: + - a2122a3f-d986-be5e-255a-c4c3aa080cfd + X-Cpcli-Customidp: + - "" + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-services-4ie3yr1a + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/plan?get + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + 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"}' + 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 + 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: + - dc64d97b-7990-46cc-5bed-f8fad85812fd + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 179.9083ms + - id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - b6994602-a3c9-3580-dcec-fc80259c82e1 + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 13:01:06 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: + - 95365a31-fe27-4e60-5b81-7ec64f238ff6 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 426.5754ms + - id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 114 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"id":"cdf9c103-ef56-43e5-ac1d-4f1c5b15e05c","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.1 terraform-provider-btp/dev + X-Correlationid: + - e858fa36-c4e8-5d7d-6945-6f6e87a7726f + 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/services/plan?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: + - Thu, 06 Jul 2023 13:01:06 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/plan?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-services-4ie3yr1a + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - 12c68565-a4dc-47e4-67fb-9c86185ef9f7 + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 219.3037ms + - id: 11 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 114 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"id":"cdf9c103-ef56-43e5-ac1d-4f1c5b15e05c","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + 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 + X-Correlationid: + - e858fa36-c4e8-5d7d-6945-6f6e87a7726f + X-Cpcli-Customidp: + - "" + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-services-4ie3yr1a + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/plan?get + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + 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"}' + 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 + 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: + - f8376506-e7cd-4c0a-5db2-102125a7e0ae + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 202.2042ms + - id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - 554e778c-2bdc-ea8a-7f86-bf15245613a0 + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 13:01: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-Frame-Options: + - DENY + X-Vcap-Request-Id: + - f154366e-47a3-4ddc-4c51-043492028f78 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 419.1251ms + - id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 114 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"id":"cdf9c103-ef56-43e5-ac1d-4f1c5b15e05c","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.1 terraform-provider-btp/dev + X-Correlationid: + - da0273f1-fd5c-90e0-3653-e4a27da990c8 + 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/services/plan?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: + - Thu, 06 Jul 2023 13:01:07 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/plan?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-services-4ie3yr1a + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - c7fadb98-c5ea-4eca-570d-05631e4cc88a + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 186.0729ms + - id: 14 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 114 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"id":"cdf9c103-ef56-43e5-ac1d-4f1c5b15e05c","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + 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 + X-Correlationid: + - da0273f1-fd5c-90e0-3653-e4a27da990c8 + X-Cpcli-Customidp: + - "" + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-services-4ie3yr1a + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/plan?get + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + 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"}' + 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 + 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: + - 9159898f-97bf-40ec-780e-8e72de1296a8 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 169.171ms + - id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - 33dc277f-7518-af20-3dce-d78c70d081a3 + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 13:01: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: + - 7898972d-3b91-4c40-5ddf-277f53c068cc + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 439.6722ms diff --git a/internal/provider/fixtures/datasource_subaccount_service_plan_by_name.yaml b/internal/provider/fixtures/datasource_subaccount_service_plan_by_name.yaml new file mode 100644 index 00000000..98a55728 --- /dev/null +++ b/internal/provider/fixtures/datasource_subaccount_service_plan_by_name.yaml @@ -0,0 +1,1145 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - 4119f3d8-f5b1-6c56-9a39-20978b6878e4 + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 13:01: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: + - f122ca9b-1278-404b-7a2b-d651d8e05429 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 402.3801ms + - 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: | + {"paramValues":{"name":"lite","offeringName":"destination","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.1 terraform-provider-btp/dev + X-Correlationid: + - 59e411dd-eeb3-7e28-8b11-ae8913aea66c + 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/services/plan?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: + - Thu, 06 Jul 2023 13:01:09 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/plan?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-services-4ie3yr1a + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - d89337fa-21a9-42ca-5cb1-ce12589b0d8f + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 215.5667ms + - id: 2 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 113 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"name":"lite","offeringName":"destination","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + 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 + X-Correlationid: + - 59e411dd-eeb3-7e28-8b11-ae8913aea66c + X-Cpcli-Customidp: + - "" + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-services-4ie3yr1a + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/plan?get + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + 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"}' + 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 + 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: + - 2230b1d1-f9a4-4e42-6edf-ba722762f1be + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 271.6293ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - 1e5cdfa5-439f-c5b3-6eb0-462b3fdf5cac + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 13:01: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: + - 1fa18371-f1d8-46ee-47b4-61c7152a4a77 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 428.0739ms + - id: 4 + 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: | + {"paramValues":{"name":"lite","offeringName":"destination","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.1 terraform-provider-btp/dev + X-Correlationid: + - 9438d814-6087-cdd2-2f43-0462639b6f7c + 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/services/plan?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: + - Thu, 06 Jul 2023 13:01:10 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/plan?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-services-4ie3yr1a + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - 14b434da-be8e-4a4a-50c8-9260a7987b41 + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 239.1367ms + - id: 5 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 113 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"name":"lite","offeringName":"destination","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + 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 + X-Correlationid: + - 9438d814-6087-cdd2-2f43-0462639b6f7c + X-Cpcli-Customidp: + - "" + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-services-4ie3yr1a + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/plan?get + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + 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"}' + 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 + 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: + - 56872dea-63b2-4f70-7dc2-efec53f936c6 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 235.0677ms + - id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - 2a594bb7-c8ee-2702-c6cf-f5f6e3a9f37f + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 13:01: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-Frame-Options: + - DENY + X-Vcap-Request-Id: + - ffc5abe4-f051-41a7-464b-554801dca8ce + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 394.8751ms + - 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: | + {"paramValues":{"name":"lite","offeringName":"destination","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.1 terraform-provider-btp/dev + X-Correlationid: + - fff6d120-5898-554a-513f-57523f490774 + 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/services/plan?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: + - Thu, 06 Jul 2023 13:01:11 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/plan?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-services-4ie3yr1a + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - eeaa2cdf-fc3b-4ed3-7fa6-eb7a85c85129 + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 190.0493ms + - id: 8 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 113 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"name":"lite","offeringName":"destination","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + 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 + X-Correlationid: + - fff6d120-5898-554a-513f-57523f490774 + X-Cpcli-Customidp: + - "" + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-services-4ie3yr1a + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/plan?get + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + 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"}' + 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 + 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: + - e36372d3-9441-4132-5bf2-aa759fdeab44 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 259.8928ms + - id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - 9e8f0ae2-3a0e-6d1e-04aa-5725a54d6a81 + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 13:01:12 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: + - 3c96c138-1438-477a-6c46-2fee4f6d0271 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 419.2095ms + - id: 10 + 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: | + {"paramValues":{"name":"lite","offeringName":"destination","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.1 terraform-provider-btp/dev + X-Correlationid: + - af89254b-cd7f-d549-f86f-6cb1d2a43212 + 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/services/plan?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: + - Thu, 06 Jul 2023 13:01:12 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/plan?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-services-4ie3yr1a + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - 4c23065b-0274-4994-6eff-fad3f768d67d + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 191.0442ms + - id: 11 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 113 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"name":"lite","offeringName":"destination","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + 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 + X-Correlationid: + - af89254b-cd7f-d549-f86f-6cb1d2a43212 + X-Cpcli-Customidp: + - "" + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-services-4ie3yr1a + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/plan?get + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + 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"}' + 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 + 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: + - 46dadc64-6101-4f56-7a60-6653fa2c2894 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 262.2188ms + - id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - 2f8f22a4-acd3-ed5c-a24b-e9629016b1ca + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 13:01:12 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: + - 2d0d1f9a-3f65-4543-79ed-9e527e957d86 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 378.1586ms + - 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: | + {"paramValues":{"name":"lite","offeringName":"destination","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.1 terraform-provider-btp/dev + X-Correlationid: + - 4f42b4bc-69a9-9ac7-a3c7-e3b4c6deff59 + 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/services/plan?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: + - Thu, 06 Jul 2023 13:01:13 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/plan?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-services-4ie3yr1a + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - 51946687-e59a-4ab6-5296-16dac8bfa376 + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 172.429ms + - id: 14 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 113 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"name":"lite","offeringName":"destination","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + 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 + X-Correlationid: + - 4f42b4bc-69a9-9ac7-a3c7-e3b4c6deff59 + X-Cpcli-Customidp: + - "" + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-services-4ie3yr1a + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/plan?get + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + 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"}' + 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 + 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: + - 330ce7d3-00b7-4e5e-5ed0-9188bd70b204 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 214.827ms + - id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - 277c3a08-e18f-6b22-c78f-49271ef6a611 + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Thu, 06 Jul 2023 13:01: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-Frame-Options: + - DENY + X-Vcap-Request-Id: + - 6b37ecb5-850d-4df8-7146-a01668bebb0d + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 385.7327ms diff --git a/internal/provider/fixtures/datasource_subaccount_service_plans_all.yaml b/internal/provider/fixtures/datasource_subaccount_service_plans_all.yaml new file mode 100644 index 00000000..2ec87b67 --- /dev/null +++ b/internal/provider/fixtures/datasource_subaccount_service_plans_all.yaml @@ -0,0 +1,1145 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - f81af12d-026f-583f-a158-2fb7be0072fd + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 06:14:25 GMT + Expires: + - "0" + Pragma: + - no-cache + Referrer-Policy: + - no-referrer + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload; + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Vcap-Request-Id: + - 7e50c3b4-fb9c-454b-57f1-6a51869dde61 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 855.1705ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 70 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.1 terraform-provider-btp/dev + X-Correlationid: + - 66ed11b6-cd23-8974-0973-021441cdba2b + 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/services/plan?list + 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, 07 Jul 2023 06:14:25 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/plan?list + 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-services-4ie3yr1a + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - d7ccd383-0dea-436e-73b8-0043736751c7 + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 290.2205ms + - id: 2 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 70 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + 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 + X-Correlationid: + - 66ed11b6-cd23-8974-0973-021441cdba2b + X-Cpcli-Customidp: + - "" + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-services-4ie3yr1a + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/plan?list + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + 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"}]' + 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 + 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: + - a4d24aef-c9a4-4d50-64d0-74fb2bc72188 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 852.7809ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - ed866af3-3ae4-ee0c-904e-43d6943c6394 + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 06:14:27 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: + - 2598d41f-ab65-42be-4a5c-231abf693da3 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 513.3776ms + - id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 70 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.1 terraform-provider-btp/dev + X-Correlationid: + - bdc06c49-fea7-ec49-32e8-b7590341da0e + 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/services/plan?list + 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, 07 Jul 2023 06:14:27 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/plan?list + 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-services-4ie3yr1a + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - bcf2daff-b075-4075-65b8-33a8205a5622 + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 256.9092ms + - id: 5 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 70 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + 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 + X-Correlationid: + - bdc06c49-fea7-ec49-32e8-b7590341da0e + X-Cpcli-Customidp: + - "" + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-services-4ie3yr1a + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/plan?list + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + 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"}]' + 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 + 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: + - 7030725d-e339-42f3-5a6a-4d35ce03bf5c + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 371.0692ms + - id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - cf6f25c2-a021-a63d-930f-460375194d92 + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 06:14: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: + - 80ef7388-4886-4e0b-4bed-7cb719e30023 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 431.9499ms + - id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 70 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.1 terraform-provider-btp/dev + X-Correlationid: + - 3dd42251-62e9-1539-2ca9-e54bf3347e46 + 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/services/plan?list + 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, 07 Jul 2023 06:14:28 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/plan?list + 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-services-4ie3yr1a + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - 674f3aa3-ea2e-41e6-465d-f56676eb08cd + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 204.625ms + - id: 8 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 70 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + 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 + X-Correlationid: + - 3dd42251-62e9-1539-2ca9-e54bf3347e46 + X-Cpcli-Customidp: + - "" + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-services-4ie3yr1a + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/plan?list + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + 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"}]' + 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 + 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: + - 7611ad6b-a2ab-4cea-6e82-1e5faf676054 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 200.5419ms + - id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - 513fa82a-8cb4-0d63-6a3e-95293cc91d32 + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 06:14: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: + - dca8d46f-0e63-46ce-74a9-72f0bf845f68 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 430.6492ms + - id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 70 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.1 terraform-provider-btp/dev + X-Correlationid: + - 358011f1-8fe9-7c47-7f69-32e9226a39f2 + 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/services/plan?list + 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, 07 Jul 2023 06:14:29 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/plan?list + 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-services-4ie3yr1a + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - f76f0fe9-d969-4112-61d0-11f9c7a4c0ef + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 210.3732ms + - id: 11 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 70 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + 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 + X-Correlationid: + - 358011f1-8fe9-7c47-7f69-32e9226a39f2 + X-Cpcli-Customidp: + - "" + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-services-4ie3yr1a + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/plan?list + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + 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"}]' + 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 + 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: + - d4dcd6cf-de6d-4402-7b39-958a820d39a2 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 189.85ms + - id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - 1dbff88c-298c-0909-b5bd-56c4d99f5992 + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 06:14: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: + - 077d22b2-8321-4593-5566-74f5420860bf + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 482.6193ms + - id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 70 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.1 terraform-provider-btp/dev + X-Correlationid: + - 9f9cff07-2f8f-f88a-69c9-d4faf8cd1914 + 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/services/plan?list + 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, 07 Jul 2023 06:14:30 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/plan?list + 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-services-4ie3yr1a + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - 40ee0a13-0721-464b-7270-8494c679c779 + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 228.6765ms + - id: 14 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 70 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + 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 + X-Correlationid: + - 9f9cff07-2f8f-f88a-69c9-d4faf8cd1914 + X-Cpcli-Customidp: + - "" + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-services-4ie3yr1a + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/plan?list + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + 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"}]' + 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 + 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: + - aa6e2513-39d4-4212-7a64-bf22d6b8449c + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 159.407ms + - id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - 0f9eb40c-1ed4-7a7f-9c08-f7af9eb17f3f + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 06:14: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: + - 908a517c-42e4-49b8-614c-644ff026dafe + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 377.3234ms diff --git a/internal/provider/fixtures/datasource_subaccount_service_plans_cloudfoundry.yaml b/internal/provider/fixtures/datasource_subaccount_service_plans_cloudfoundry.yaml new file mode 100644 index 00000000..e983001e --- /dev/null +++ b/internal/provider/fixtures/datasource_subaccount_service_plans_cloudfoundry.yaml @@ -0,0 +1,1145 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - 4eaab6f0-0217-7152-e97f-fc2f2263b976 + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 06:20:51 GMT + Expires: + - "0" + Pragma: + - no-cache + Referrer-Policy: + - no-referrer + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload; + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Vcap-Request-Id: + - 42096a40-2288-4f69-6a74-8935b54fac87 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 548.5721ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 99 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"environment":"cloudfoundry","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.1 terraform-provider-btp/dev + X-Correlationid: + - ffcbe36e-67a7-0269-fbc7-e90b02ed4ae3 + 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/services/plan?list + 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, 07 Jul 2023 06:20:51 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/plan?list + 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-services-4ie3yr1a + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - 6ce74f72-4440-4ecb-453e-bd9585698820 + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 219.2405ms + - id: 2 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 99 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"environment":"cloudfoundry","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + 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 + X-Correlationid: + - ffcbe36e-67a7-0269-fbc7-e90b02ed4ae3 + X-Cpcli-Customidp: + - "" + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-services-4ie3yr1a + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/plan?list + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '[]' + headers: + Cache-Control: + - no-cache, no-store, max-age=0, must-revalidate + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 06:20:51 GMT + Expires: + - "0" + Pragma: + - no-cache + Referrer-Policy: + - no-referrer + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload; + X-Content-Type-Options: + - nosniff + X-Cpcli-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: + - 5782618d-7e6d-4306-60eb-00d30dcd05ed + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 209.0736ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - 22130f61-dcc9-cced-aea4-e7bacf530683 + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 06:20:52 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: + - 48714faf-138f-4799-72b8-e156ee9bb369 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 627.3648ms + - id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 99 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"environment":"cloudfoundry","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.1 terraform-provider-btp/dev + X-Correlationid: + - d7280105-0702-dc66-9306-a89ece6d8ace + 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/services/plan?list + 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, 07 Jul 2023 06:20:52 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/plan?list + 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-services-4ie3yr1a + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - e3aa2439-a1c9-454e-6deb-e63b361eda01 + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 271.8875ms + - id: 5 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 99 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"environment":"cloudfoundry","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + 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 + X-Correlationid: + - d7280105-0702-dc66-9306-a89ece6d8ace + X-Cpcli-Customidp: + - "" + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-services-4ie3yr1a + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/plan?list + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '[]' + headers: + Cache-Control: + - no-cache, no-store, max-age=0, must-revalidate + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 06:20: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 + X-Cpcli-Backend-Status: + - "200" + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Replacementrefreshtoken: + - redacted + X-Frame-Options: + - DENY + X-Vcap-Request-Id: + - a720aa19-f43c-41b8-70f9-68a4555ed3a3 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 136.7251ms + - id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - 3dcae057-4954-5ad0-4f0b-abb64c6f72cf + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 06:20: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-Frame-Options: + - DENY + X-Vcap-Request-Id: + - 8a173abe-ef1d-444a-7b16-541503c2b458 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 464.4916ms + - id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 99 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"environment":"cloudfoundry","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.1 terraform-provider-btp/dev + X-Correlationid: + - 85b6b6d0-a767-fb48-3b82-e756486aef62 + 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/services/plan?list + 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, 07 Jul 2023 06:20:53 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/plan?list + 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-services-4ie3yr1a + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - 61a6d4d0-6f21-4e9f-584f-9e9e8f5c5cdc + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 206.3184ms + - id: 8 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 99 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"environment":"cloudfoundry","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + 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 + X-Correlationid: + - 85b6b6d0-a767-fb48-3b82-e756486aef62 + X-Cpcli-Customidp: + - "" + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-services-4ie3yr1a + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/plan?list + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '[]' + headers: + Cache-Control: + - no-cache, no-store, max-age=0, must-revalidate + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 06:20: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 + X-Cpcli-Backend-Status: + - "200" + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Replacementrefreshtoken: + - redacted + X-Frame-Options: + - DENY + X-Vcap-Request-Id: + - 1be1d268-56b0-4371-5265-160635eaa337 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 129.4672ms + - id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - 70c79950-00b8-a884-5984-3738657a571c + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 06:20: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: + - 4718992c-8032-4471-4e80-f7e53e6f0d1c + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 423.8265ms + - id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 99 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"environment":"cloudfoundry","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.1 terraform-provider-btp/dev + X-Correlationid: + - ba893497-f408-08d8-dcb6-f0c478f563b0 + 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/services/plan?list + 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, 07 Jul 2023 06:20:54 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/plan?list + 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-services-4ie3yr1a + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - 6ff9ef25-8142-4d11-7eea-5fc191b3fbd8 + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 194.274ms + - id: 11 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 99 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"environment":"cloudfoundry","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + 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 + X-Correlationid: + - ba893497-f408-08d8-dcb6-f0c478f563b0 + X-Cpcli-Customidp: + - "" + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-services-4ie3yr1a + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/plan?list + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '[]' + headers: + Cache-Control: + - no-cache, no-store, max-age=0, must-revalidate + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 06:20: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-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: + - fca8df5d-7413-4014-6712-fcd05f1dfe36 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 171.4274ms + - id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - 8fbfa33d-5b43-46a6-73b8-7f963125e5a1 + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 06:20:55 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: + - 6c924bf5-7977-46a9-7380-c82f6e7eb4bd + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 427.8002ms + - id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 99 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"environment":"cloudfoundry","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.1 terraform-provider-btp/dev + X-Correlationid: + - a766ba81-6fe6-bd71-c60a-6c2dff8815d2 + 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/services/plan?list + 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, 07 Jul 2023 06:20:55 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/plan?list + 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-services-4ie3yr1a + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - d0fb40d2-c2b4-4578-5145-dc90ca7088aa + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 223.2564ms + - id: 14 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 99 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"environment":"cloudfoundry","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + 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 + X-Correlationid: + - a766ba81-6fe6-bd71-c60a-6c2dff8815d2 + X-Cpcli-Customidp: + - "" + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-services-4ie3yr1a + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/plan?list + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '[]' + headers: + Cache-Control: + - no-cache, no-store, max-age=0, must-revalidate + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 06:20:55 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: + - 3fbc2c27-9dc8-4dc4-6200-96dec2681001 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 178.6496ms + - id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - 93276e67-ca90-b855-dc2a-3a9500221d04 + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 06:20: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: + - 365a32aa-ec63-4faf-514b-8502a10ad98c + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 466.4884ms diff --git a/internal/provider/fixtures/datasource_subaccount_service_plans_namefilter.yaml b/internal/provider/fixtures/datasource_subaccount_service_plans_namefilter.yaml new file mode 100644 index 00000000..58734373 --- /dev/null +++ b/internal/provider/fixtures/datasource_subaccount_service_plans_namefilter.yaml @@ -0,0 +1,1145 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - 4b04f1b4-551d-39de-6dd6-82a8c59d17b2 + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 06:25: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: + - a92b5dd0-1e22-40f2-406d-9c53d3b8f51b + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 866.422ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 106 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"fieldsFilter":"name eq 'standard'","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.1 terraform-provider-btp/dev + X-Correlationid: + - 806a09da-7f2e-c4a9-8958-46f8227bbb5f + 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/services/plan?list + 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, 07 Jul 2023 06:25:31 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/plan?list + 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-services-4ie3yr1a + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - 442c7bc4-960d-4407-5277-37a00fc1c4d0 + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 246.2034ms + - id: 2 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 106 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"fieldsFilter":"name eq 'standard'","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + 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 + X-Correlationid: + - 806a09da-7f2e-c4a9-8958-46f8227bbb5f + X-Cpcli-Customidp: + - "" + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-services-4ie3yr1a + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/plan?list + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + 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"}]' + 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 + 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: + - b37f693b-a7e0-4b9e-4122-1753580df884 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 223.1394ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - 035b355e-3f7b-85c9-4158-58a218388b91 + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 06:25: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: + - 88391237-08e3-4e14-4f9e-f4f48584b70d + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 404.9149ms + - id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 106 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"fieldsFilter":"name eq 'standard'","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.1 terraform-provider-btp/dev + X-Correlationid: + - 0780917d-72d1-5fe1-206a-3b87076bbe16 + 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/services/plan?list + 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, 07 Jul 2023 06:25:31 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/plan?list + 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-services-4ie3yr1a + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - bded8b0e-38b8-4f3d-7ba9-a6e5927d55a8 + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 198.6219ms + - id: 5 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 106 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"fieldsFilter":"name eq 'standard'","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + 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 + X-Correlationid: + - 0780917d-72d1-5fe1-206a-3b87076bbe16 + X-Cpcli-Customidp: + - "" + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-services-4ie3yr1a + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/plan?list + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + 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"}]' + 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 + 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: + - c2364a7b-edc4-4ade-5255-985cc9bac69e + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 157.9992ms + - id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - 91412da2-e742-1bcf-46d2-b3b53d10ae62 + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 06:25: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-Frame-Options: + - DENY + X-Vcap-Request-Id: + - dd6477b9-8bfd-461e-51e9-f021fc7e28fe + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 366.6463ms + - id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 106 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"fieldsFilter":"name eq 'standard'","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.1 terraform-provider-btp/dev + X-Correlationid: + - 3c78041a-4356-1830-2d6d-19be03a56485 + 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/services/plan?list + 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, 07 Jul 2023 06:25:32 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/plan?list + 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-services-4ie3yr1a + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - 49022250-c1dc-4684-4469-86a667166463 + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 254.7499ms + - id: 8 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 106 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"fieldsFilter":"name eq 'standard'","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + 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 + X-Correlationid: + - 3c78041a-4356-1830-2d6d-19be03a56485 + X-Cpcli-Customidp: + - "" + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-services-4ie3yr1a + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/plan?list + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + 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"}]' + 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 + 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: + - b928ce58-42c2-4486-7f1e-f485e3af51fe + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 154.2153ms + - id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - 4072d5b8-56ac-3b74-f12c-5f10e4613052 + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 06:25:33 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: + - c55c780a-006d-4f24-5198-a3a97bde2254 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 406.1916ms + - id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 106 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"fieldsFilter":"name eq 'standard'","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.1 terraform-provider-btp/dev + X-Correlationid: + - 2bd62e67-2641-504f-3d83-9bd2d741b21d + 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/services/plan?list + 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, 07 Jul 2023 06:25:33 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/plan?list + 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-services-4ie3yr1a + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - 0b3652f3-7d33-4b2c-4ba5-424caa172e4e + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 230.7862ms + - id: 11 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 106 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"fieldsFilter":"name eq 'standard'","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + 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 + X-Correlationid: + - 2bd62e67-2641-504f-3d83-9bd2d741b21d + X-Cpcli-Customidp: + - "" + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-services-4ie3yr1a + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/plan?list + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + 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"}]' + 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 + 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: + - 57c37965-c627-45ca-55dc-6c4b8d8005fd + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 170.7911ms + - id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - f9852643-2118-69cf-8f22-0a09ee4866cb + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 06:25:34 GMT + Expires: + - "0" + Pragma: + - no-cache + Referrer-Policy: + - no-referrer + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload; + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Vcap-Request-Id: + - 6bad736e-b9ed-4f25-7ffe-e325556ed7c6 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 399.1897ms + - id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 106 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"fieldsFilter":"name eq 'standard'","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.1 terraform-provider-btp/dev + X-Correlationid: + - a6864bb1-f5b8-49b5-685f-828b21b4607d + 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/services/plan?list + 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, 07 Jul 2023 06:25:34 GMT + Expires: + - "0" + Location: + - https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/plan?list + 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-services-4ie3yr1a + X-Frame-Options: + - DENY + X-Id-Token: + - redacted + X-Vcap-Request-Id: + - ce57ab4e-3113-4cbc-54fa-f73e475c55ce + X-Xss-Protection: + - "0" + status: 307 Temporary Redirect + code: 307 + duration: 211.2778ms + - id: 14 + request: + proto: "" + proto_major: 0 + proto_minor: 0 + content_length: 106 + transfer_encoding: [] + trailer: {} + host: "" + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"fieldsFilter":"name eq 'standard'","subaccount":"59cd458e-e66e-4b60-b6d8-8f219379f9a5"}} + form: {} + headers: + Content-Type: + - application/json + 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 + X-Correlationid: + - a6864bb1-f5b8-49b5-685f-828b21b4607d + X-Cpcli-Customidp: + - "" + X-Cpcli-Format: + - json + X-Cpcli-Refreshtoken: + - redacted + X-Cpcli-Subdomain: + - integration-test-services-4ie3yr1a + X-Id-Token: + - redacted + url: https://cpcli.cf.eu12.hana.ondemand.com/command/v2.38.0/services/plan?list + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + 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"}]' + 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 + 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: + - 150589bb-e68b-45c5-451a-df7f890bfbc6 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 144.0541ms + - id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - d806c226-37a8-e5c2-ad2b-ed604f20a3bf + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Fri, 07 Jul 2023 06:25: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-Frame-Options: + - DENY + X-Vcap-Request-Id: + - 4258e300-d53a-4ef0-45fb-a2a528f45b45 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 397.7674ms diff --git a/internal/provider/fixtures/resource_directory.yaml b/internal/provider/fixtures/resource_directory.yaml new file mode 100644 index 00000000..766d4c55 --- /dev/null +++ b/internal/provider/fixtures/resource_directory.yaml @@ -0,0 +1,1535 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 127 + transfer_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.5.0 terraform-provider-btp/dev + X-Correlationid: + - 599c2e46-a134-02c2-4e21-9b1d98ec593d + 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: 162 + 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: + - "162" + Content-Type: + - application/json + Date: + - Mon, 10 Jul 2023 11:31: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: + - 6302d4e3-1f0d-4097-68ab-8c95c906f16b + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 887.900979ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 127 + transfer_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.5.0 terraform-provider-btp/dev + X-Correlationid: + - 288f1ee2-dfd0-e949-2d1b-632428ea0da5 + 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: 162 + 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: + - "162" + Content-Type: + - application/json + Date: + - Mon, 10 Jul 2023 11:31: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: + - e545cc47-35db-4df6-5d6f-fd35fc6921e5 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 420.351045ms + - id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 127 + transfer_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.5.0 terraform-provider-btp/dev + X-Correlationid: + - 88f368a7-7b38-d5a4-0ddb-ab61a16a9dc5 + 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: 162 + 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: + - "162" + Content-Type: + - application/json + Date: + - Mon, 10 Jul 2023 11:31: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: + - eea6df8a-688e-438e-6b7f-c1be4f0f68a4 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 623.690068ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 128 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"description":"This is a new directory","displayName":"my-new-directory","globalAccount":"terraformintcanary"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev + X-Correlationid: + - c107daa9-2bb6-12a5-1d65-5aa83a1d600d + 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/accounts/directory?create + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + 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"}' + 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 + 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: + - f3f4f047-1c9b-4857-4274-9deee7469c5a + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 505.652237ms + - id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 108 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"directoryID":"c76dce51-5c06-4ecb-b91a-9074631cb04b","globalAccount":"terraformintcanary"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev + X-Correlationid: + - ac882579-8486-5877-8d18-e391efa20aa7 + 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/accounts/directory?get + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + 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"}' + 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 + 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: + - a86c273e-ba26-49fc-4e3b-c321236e0881 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 426.852143ms + - id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 127 + transfer_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.5.0 terraform-provider-btp/dev + X-Correlationid: + - 07048108-5320-8fc7-36f2-f422054e9d22 + 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: 162 + 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: + - "162" + Content-Type: + - application/json + Date: + - Mon, 10 Jul 2023 11:31:47 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: + - c65330d9-98ce-41ba-75c5-9154121861d5 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 533.915509ms + - id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 127 + transfer_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.5.0 terraform-provider-btp/dev + X-Correlationid: + - d87bdff1-5e9b-250f-d171-f3e5f4679190 + 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: 162 + 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: + - "162" + Content-Type: + - application/json + Date: + - Mon, 10 Jul 2023 11:31:47 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: + - 0a248813-bc6a-4d95-58ce-e4b4572f40c0 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 583.252289ms + - id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 108 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"directoryID":"c76dce51-5c06-4ecb-b91a-9074631cb04b","globalAccount":"terraformintcanary"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev + X-Correlationid: + - 38c17f26-ea8a-817d-8ba9-b6b43995ba8a + 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/accounts/directory?get + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + 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"}' + 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 + 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: + - ebb3bb1a-582e-4e92-757a-80970216df00 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 408.183581ms + - id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 127 + transfer_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.5.0 terraform-provider-btp/dev + X-Correlationid: + - 858911de-80f6-c54f-1b61-f4b45232a80d + 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: 162 + 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: + - "162" + Content-Type: + - application/json + Date: + - Mon, 10 Jul 2023 11:31:48 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: + - 4e630fb1-4d58-4f7c-75e8-a31a2a263ce1 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 410.743609ms + - id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 127 + transfer_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.5.0 terraform-provider-btp/dev + X-Correlationid: + - e371ed3d-d660-fb57-7b06-43695aaae594 + 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: 162 + 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: + - "162" + Content-Type: + - application/json + Date: + - Mon, 10 Jul 2023 11:31:49 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: + - daa209ba-2fe3-4428-7fd2-cb6b2da850b3 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 371.319971ms + - id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 108 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"directoryID":"c76dce51-5c06-4ecb-b91a-9074631cb04b","globalAccount":"terraformintcanary"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev + X-Correlationid: + - 46c47bea-e831-5839-01bc-fa3ddf581750 + 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/accounts/directory?get + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + 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"}' + 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 + 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: + - 51029b15-1023-4ccf-7744-94d000fbb61c + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 407.381834ms + - id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 127 + transfer_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.5.0 terraform-provider-btp/dev + X-Correlationid: + - 2f62c34a-0cd1-5096-02ba-480436e9d60d + 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: 162 + 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: + - "162" + Content-Type: + - application/json + Date: + - Mon, 10 Jul 2023 11:31:50 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: + - 5dfdb881-8a30-458d-4d17-2048a9a49dc7 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 407.913326ms + - id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 127 + transfer_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.5.0 terraform-provider-btp/dev + X-Correlationid: + - a7916768-4d3f-6375-79fa-0f0963241331 + 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: 162 + 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: + - "162" + Content-Type: + - application/json + Date: + - Mon, 10 Jul 2023 11:31:50 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: + - 3f08c559-9096-4754-55b8-e99680625599 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 321.243056ms + - id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 189 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"description":"This is a updated directory","directoryID":"c76dce51-5c06-4ecb-b91a-9074631cb04b","displayName":"my-updated-directory","globalAccount":"terraformintcanary"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev + X-Correlationid: + - eafbf347-65b3-4699-656b-5608d78106eb + 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/accounts/directory?update + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + 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"}' + 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 + 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: + - eb637615-952a-428c-512d-1e89d4a540e4 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 370.338522ms + - id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 108 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"directoryID":"c76dce51-5c06-4ecb-b91a-9074631cb04b","globalAccount":"terraformintcanary"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev + X-Correlationid: + - 0c20bd62-160d-9e8f-a163-e272f2c85fc8 + 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/accounts/directory?get + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + 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"}' + 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 + 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: + - 9f895d51-36cd-4d32-494a-5a33722e743d + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 341.717725ms + - id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 127 + transfer_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.5.0 terraform-provider-btp/dev + X-Correlationid: + - 6a9b36d4-e6fb-ca88-9437-2e16653d88ef + 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: 162 + 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: + - "162" + Content-Type: + - application/json + Date: + - Mon, 10 Jul 2023 11:31: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: + - 843b980c-c9e5-4ae9-4495-c9e53fb85ef1 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 541.806745ms + - id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 127 + transfer_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.5.0 terraform-provider-btp/dev + X-Correlationid: + - 73044d4c-bf77-5258-e307-2bf0e1652956 + 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: 162 + 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: + - "162" + Content-Type: + - application/json + Date: + - Mon, 10 Jul 2023 11:31: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: + - f7df2482-a694-444e-57e5-e6e481b56e4b + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 351.708336ms + - id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 108 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"directoryID":"c76dce51-5c06-4ecb-b91a-9074631cb04b","globalAccount":"terraformintcanary"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev + X-Correlationid: + - b3ba6049-7221-c73a-bf97-030219774ea8 + 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/accounts/directory?get + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + 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"}' + 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 + 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: + - 9b2a87f2-609a-4942-6351-b4a7c3c3717a + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 233.44208ms + - id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 127 + transfer_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.5.0 terraform-provider-btp/dev + X-Correlationid: + - 6917c0af-6672-bbb6-731f-cdf45844280e + 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: 162 + 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: + - "162" + Content-Type: + - application/json + Date: + - Mon, 10 Jul 2023 11:31:58 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: + - 7f678573-9a82-487a-41e5-f30a492f5c37 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 480.533217ms + - id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 127 + transfer_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.5.0 terraform-provider-btp/dev + X-Correlationid: + - 294ee7e6-1a61-8b02-dc4e-b9e0aa4670e9 + 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: 162 + 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: + - "162" + Content-Type: + - application/json + Date: + - Mon, 10 Jul 2023 11:31:59 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: + - c0b30809-0baf-4615-6ff3-db52f474c64c + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 414.362718ms + - id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 127 + transfer_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.5.0 terraform-provider-btp/dev + X-Correlationid: + - 08def7ca-43fb-6605-7e26-07dee6963465 + 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: 162 + 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: + - "162" + Content-Type: + - application/json + Date: + - Mon, 10 Jul 2023 11:31:59 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: + - c6d50dc2-608b-44c5-7891-d0d52e025620 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 294.118127ms + - id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 146 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"confirm":"true","directoryID":"c76dce51-5c06-4ecb-b91a-9074631cb04b","forceDelete":"true","globalAccount":"terraformintcanary"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev + X-Correlationid: + - a07bad96-3f6d-9bfd-fe57-5b7f4017bfe6 + 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/accounts/directory?delete + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + 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"}' + 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 + 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: + - 1f25c7b2-8275-4270-76ca-d43a4f9b6816 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 247.551736ms + - id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 108 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"directoryID":"c76dce51-5c06-4ecb-b91a-9074631cb04b","globalAccount":"terraformintcanary"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.0 terraform-provider-btp/dev + X-Correlationid: + - 798468ae-b0cf-571b-5d3e-d71f0e47c428 + 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/accounts/directory?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: + - Mon, 10 Jul 2023 11:32: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-Cpcli-Refreshtoken: + - redacted + 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. + X-Frame-Options: + - DENY + X-Vcap-Request-Id: + - f84aa858-9fee-477c-45db-8fd983f43278 + X-Xss-Protection: + - "0" + status: 404 Not Found + code: 404 + duration: 380.167648ms diff --git a/internal/provider/fixtures/resource_globalaccount_role_collection.yaml b/internal/provider/fixtures/resource_globalaccount_role_collection.yaml index eb7b60cd..af6da867 100644 --- a/internal/provider/fixtures/resource_globalaccount_role_collection.yaml +++ b/internal/provider/fixtures/resource_globalaccount_role_collection.yaml @@ -19,9 +19,9 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev + - Terraform/1.5.1 terraform-provider-btp/dev X-Correlationid: - - 7efffba8-b8b6-9550-c9e8-3bbedf806161 + - cb783e9b-c6bf-b360-5014-6c832185ad65 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -43,7 +43,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 14 Jun 2023 14:55:14 GMT + - Mon, 03 Jul 2023 08:23:44 GMT Expires: - "0" Pragma: @@ -57,12 +57,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 587d5490-e532-4483-6eac-e96500402af1 + - 6d20c31b-3dba-488e-7d85-f166b0b5dfe1 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 718.4289ms + duration: 976.2345ms - id: 1 request: proto: HTTP/1.1 @@ -81,9 +81,9 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev + - Terraform/1.5.1 terraform-provider-btp/dev X-Correlationid: - - 1dcc650b-e210-51eb-8400-76af5ea0c381 + - a04e6ed8-153f-73da-be67-e8b8e9ced385 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -105,7 +105,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 14 Jun 2023 14:55:15 GMT + - Mon, 03 Jul 2023 08:23:45 GMT Expires: - "0" Pragma: @@ -119,12 +119,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - c4d2c1e6-625d-4dbe-745a-6754f99abae2 + - e986dafb-d6d5-47f8-5fcd-89c86c44c50a X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 656.4614ms + duration: 583.0674ms - id: 2 request: proto: HTTP/1.1 @@ -143,9 +143,9 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev + - Terraform/1.5.1 terraform-provider-btp/dev X-Correlationid: - - d05ab39f-1e7c-7856-2a64-29e41fa0e068 + - 30e9b629-c0c8-10b1-709a-d76462fa0ca4 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -167,7 +167,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 14 Jun 2023 14:55:17 GMT + - Mon, 03 Jul 2023 08:23:46 GMT Expires: - "0" Pragma: @@ -181,12 +181,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 771a552a-d155-4288-40ab-54fb49bd272f + - 3b02cfbb-0202-4066-591d-9eacc0dfc737 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 499.4433ms + duration: 565.7528ms - id: 3 request: proto: HTTP/1.1 @@ -205,9 +205,9 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev + - Terraform/1.5.1 terraform-provider-btp/dev X-Correlationid: - - f5491c13-8478-f304-6370-5bb2c31fd5fe + - 1850fbbc-dc89-6308-ae56-a63933b28631 X-Cpcli-Customidp: - "" X-Cpcli-Format: @@ -233,7 +233,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 14 Jun 2023 14:55:18 GMT + - Mon, 03 Jul 2023 08:23:46 GMT Expires: - "0" Pragma: @@ -255,12 +255,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - e7a7c8df-42a8-4a7d-469a-0b2344a63417 + - 3cce5526-0329-4e68-70f3-42fa50f793ac X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 345.4575ms + duration: 332.7771ms - id: 4 request: proto: HTTP/1.1 @@ -279,9 +279,9 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev + - Terraform/1.5.1 terraform-provider-btp/dev X-Correlationid: - - adcdfbfc-c6b8-89aa-ce74-b777bf0ee709 + - 8e447aad-43b0-1bed-5736-ca56b690eb3e X-Cpcli-Customidp: - "" X-Cpcli-Format: @@ -307,7 +307,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 14 Jun 2023 14:55:18 GMT + - Mon, 03 Jul 2023 08:23:46 GMT Expires: - "0" Pragma: @@ -327,12 +327,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 154e27ab-772a-4e6c-4a32-fab7898736ff + - 9d2714ef-689a-48aa-5c22-ada42aa2c326 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 277.8645ms + duration: 278.396ms - id: 5 request: proto: HTTP/1.1 @@ -351,9 +351,9 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev + - Terraform/1.5.1 terraform-provider-btp/dev X-Correlationid: - - 17dc0ac1-b41a-bc97-2735-86785e3ae96f + - 077bd7fe-d93b-26b4-15de-53baea263c51 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -375,7 +375,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 14 Jun 2023 14:55:19 GMT + - Mon, 03 Jul 2023 08:23:47 GMT Expires: - "0" Pragma: @@ -389,12 +389,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - a98aea16-a48d-4108-5e8a-deb5dc7b27c5 + - 69769d52-0868-470f-5dea-aa92d01f11a5 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 422.1875ms + duration: 558.5997ms - id: 6 request: proto: HTTP/1.1 @@ -413,9 +413,9 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev + - Terraform/1.5.1 terraform-provider-btp/dev X-Correlationid: - - a4401c3c-c8e7-3346-e5f3-aaa8f93e59a7 + - eae6a892-60db-9127-77e8-df378d7b48fa X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -437,7 +437,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 14 Jun 2023 14:55:20 GMT + - Mon, 03 Jul 2023 08:23:47 GMT Expires: - "0" Pragma: @@ -451,12 +451,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 0d7f39ee-a3c7-4e32-7cfa-87d01c134177 + - 27983331-37e6-4623-6a3a-af64119d7107 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 456.385ms + duration: 540.8229ms - id: 7 request: proto: HTTP/1.1 @@ -475,9 +475,9 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev + - Terraform/1.5.1 terraform-provider-btp/dev X-Correlationid: - - 06ee42f3-163b-8f73-0c25-a2d365eec9f7 + - c02b8c15-e41c-28d4-f09b-fa1bad62ca00 X-Cpcli-Customidp: - "" X-Cpcli-Format: @@ -503,7 +503,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 14 Jun 2023 14:55:21 GMT + - Mon, 03 Jul 2023 08:23:48 GMT Expires: - "0" Pragma: @@ -525,12 +525,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - b47a97c0-f8d5-4207-6ec3-289eea952c24 + - 084bcedf-4967-4293-795a-671628e63138 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 212.2116ms + duration: 197.007ms - id: 8 request: proto: HTTP/1.1 @@ -549,9 +549,9 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev + - Terraform/1.5.1 terraform-provider-btp/dev X-Correlationid: - - 8c91e4cc-373f-47cb-b18c-56ea47abe61e + - 17536b7b-1b1b-716e-1ca3-48806b93d189 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -573,7 +573,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 14 Jun 2023 14:55:21 GMT + - Mon, 03 Jul 2023 08:23:48 GMT Expires: - "0" Pragma: @@ -587,12 +587,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 12ea4007-20ce-4a87-4819-7bf21e354292 + - 86624784-fca2-4bb1-5af4-982a4567f848 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 486.9533ms + duration: 511.0329ms - id: 9 request: proto: HTTP/1.1 @@ -611,9 +611,9 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev + - Terraform/1.5.1 terraform-provider-btp/dev X-Correlationid: - - 8fb169d9-8a1c-dd22-0d94-3392ee79110b + - 691e10ed-f421-1a06-9620-d73a9f8999c2 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -635,7 +635,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 14 Jun 2023 14:55:24 GMT + - Mon, 03 Jul 2023 08:23:49 GMT Expires: - "0" Pragma: @@ -649,13 +649,87 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - a41db3e6-cef6-4aa2-4561-ce95c2b0688a + - b13aa442-5dd3-40b0-4359-d5b6ba0ef262 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 1.6552737s + duration: 414.3016ms - id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 101 + transfer_encoding: [] + trailer: {} + host: cpcli.cf.sap.hana.ondemand.com + remote_addr: "" + request_uri: "" + body: | + {"paramValues":{"globalAccount":"terraformintcanary","roleCollectionName":"My new role collection"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Terraform/1.5.1 terraform-provider-btp/dev + X-Correlationid: + - 48903d93-f0d8-3d25-7951-74cea865d5bc + 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/role-collection?get + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"My new role collection","description":"Description of my new role collection","roleReferences":[{"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."}],"isReadOnly":false}' + headers: + Cache-Control: + - no-cache, no-store, max-age=0, must-revalidate + Content-Type: + - application/json + Date: + - Mon, 03 Jul 2023 08:23:49 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: + - a5fb4d00-3a3b-4702-4fb6-c28c64df1486 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 283.7981ms + - id: 11 request: proto: HTTP/1.1 proto_major: 1 @@ -673,9 +747,9 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev + - Terraform/1.5.1 terraform-provider-btp/dev X-Correlationid: - - 4ccc8e3e-c796-1d0d-3534-538ac6752807 + - 0d0acd62-e364-ac61-d831-119b7cb3d832 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -697,7 +771,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 14 Jun 2023 14:55:26 GMT + - Mon, 03 Jul 2023 08:23:50 GMT Expires: - "0" Pragma: @@ -711,13 +785,75 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 412d8f12-8cc1-4704-52d5-7d8bda0715b6 + - f861adf9-14cc-499f-70dd-40e988799743 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 483.867ms - - id: 11 + duration: 458.2235ms + - id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_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.5.1 terraform-provider-btp/dev + X-Correlationid: + - 70bd8f84-881a-eba2-9b78-bd6bdfb4a294 + 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: 149 + 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: + - "149" + Content-Type: + - application/json + Date: + - Mon, 03 Jul 2023 08:23:50 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: + - c2ef2901-1863-4e1c-66ae-db05a61cdd79 + X-Xss-Protection: + - "0" + status: 200 OK + code: 200 + duration: 447.1014ms + - id: 13 request: proto: HTTP/1.1 proto_major: 1 @@ -735,9 +871,9 @@ interactions: Content-Type: - application/json User-Agent: - - Terraform/1.4.6 terraform-provider-btp/dev + - Terraform/1.5.1 terraform-provider-btp/dev X-Correlationid: - - 33802b34-cc44-6890-a528-00cf00f91d1e + - 6178d606-b9b6-80f4-c64c-8800f15ae544 X-Cpcli-Customidp: - "" X-Cpcli-Format: @@ -763,7 +899,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 14 Jun 2023 14:55:29 GMT + - Mon, 03 Jul 2023 08:23:50 GMT Expires: - "0" Pragma: @@ -783,9 +919,9 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 6951bcb5-8cd7-4bbb-6e86-52be5c2787a9 + - 727bb524-e25f-4a0f-4cf7-968c9215711f X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 2.730923s + duration: 258.7557ms diff --git a/internal/provider/fixtures/resource_directory.parent_directory.yaml b/internal/provider/fixtures/resource_globalaccount_role_collection_import_error.yaml similarity index 77% rename from internal/provider/fixtures/resource_directory.parent_directory.yaml rename to internal/provider/fixtures/resource_globalaccount_role_collection_import_error.yaml index d4c06459..66172898 100644 --- a/internal/provider/fixtures/resource_directory.parent_directory.yaml +++ b/internal/provider/fixtures/resource_globalaccount_role_collection_import_error.yaml @@ -21,7 +21,7 @@ interactions: User-Agent: - Terraform/1.5.1 terraform-provider-btp/dev X-Correlationid: - - 8e933749-76c5-0acc-7d08-502b38293928 + - e5d1e000-e73c-d14b-9ab5-74e178d67a4e X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -43,7 +43,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 03 Jul 2023 10:09:52 GMT + - Mon, 03 Jul 2023 08:23:51 GMT Expires: - "0" Pragma: @@ -57,12 +57,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - a8b56a21-5802-45dc-6ada-0fdc5edd97dd + - cce7a736-9876-4f51-65aa-5fc9c3c38776 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 594.8798ms + duration: 488.2698ms - id: 1 request: proto: HTTP/1.1 @@ -83,7 +83,7 @@ interactions: User-Agent: - Terraform/1.5.1 terraform-provider-btp/dev X-Correlationid: - - eae13e44-6bf9-64cc-d9c2-62901f5e43e8 + - 2efd02ab-a4d9-e007-344a-7a21ac816a81 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -105,7 +105,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 03 Jul 2023 10:09:52 GMT + - Mon, 03 Jul 2023 08:23:51 GMT Expires: - "0" Pragma: @@ -119,12 +119,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 6585bf31-14cc-43f4-56c1-97f95cf301b0 + - 96e5698f-36dd-4c61-6f77-3d0e349bb5fa X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 360.4292ms + duration: 392.507ms - id: 2 request: proto: HTTP/1.1 @@ -145,7 +145,7 @@ interactions: User-Agent: - Terraform/1.5.1 terraform-provider-btp/dev X-Correlationid: - - e2aa1de3-4693-58ad-90cc-43706b895391 + - 3d6ff835-466b-aedd-5401-e79a2ad49b68 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -167,7 +167,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 03 Jul 2023 10:09:53 GMT + - Mon, 03 Jul 2023 08:23:52 GMT Expires: - "0" Pragma: @@ -181,25 +181,25 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - a03c583f-e1b2-417a-74b1-3bdf26d31b9d + - 28c9be2b-62a5-4463-69b2-3fb80a472ed1 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 416.0052ms + duration: 440.9998ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 128 + content_length: 155 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"paramValues":{"description":"This is a parent folder","displayName":"my-parent-folder","globalAccount":"terraformintcanary"}} + {"paramValues":{"description":"Description of my new role collection","globalAccount":"terraformintcanary","roleCollectionName":"My new role collection"}} form: {} headers: Content-Type: @@ -207,7 +207,7 @@ interactions: User-Agent: - Terraform/1.5.1 terraform-provider-btp/dev X-Correlationid: - - 3d2fdebc-ffac-9486-62e0-cdf80be5a929 + - d19d6f35-5637-df94-5275-c3030d02394e X-Cpcli-Customidp: - "" X-Cpcli-Format: @@ -216,7 +216,7 @@ interactions: - redacted X-Cpcli-Subdomain: - terraformintcanary - url: https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/accounts/directory?create + url: https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/role-collection?create method: POST response: proto: HTTP/2.0 @@ -226,14 +226,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"guid":"7aa86f24-4881-4e99-a735-1a1d401c92d5","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"my-parent-folder","description":"This is a parent folder","createdDate":"Jul 3, 2023, 10:09:53 AM","createdBy":"john.doe@int.test","modifiedDate":"Jul 3, 2023, 10:09:53 AM","entityState":"OK","stateMessage":"Directory created.","directoryType":"FOLDER","directoryFeatures":["DEFAULT"],"contractStatus":"ACTIVE"}' + body: '{"name":"My new role collection","description":"Description of my new role collection","isReadOnly":false}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Mon, 03 Jul 2023 10:09:53 GMT + - Mon, 03 Jul 2023 08:23:52 GMT Expires: - "0" Pragma: @@ -245,7 +245,7 @@ interactions: X-Content-Type-Options: - nosniff X-Cpcli-Backend-Mediatype: - - application/json;charset=UTF-8 + - application/json X-Cpcli-Backend-Status: - "200" X-Cpcli-Refreshtoken: @@ -255,25 +255,25 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 9efaea6b-c57b-42e8-45ae-7ff9aedc1959 + - 0d63160e-4c44-4b69-5973-308acba786ba X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 306.3066ms + duration: 237.7379ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 108 + content_length: 216 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"paramValues":{"directoryID":"7aa86f24-4881-4e99-a735-1a1d401c92d5","globalAccount":"terraformintcanary"}} + {"paramValues":{"globalAccount":"terraformintcanary","roleCollectionName":"My new role collection","roleName":"Global Account Viewer","roleTemplateAppID":"cis-central!b13","roleTemplateName":"GlobalAccount_Viewer"}} form: {} headers: Content-Type: @@ -281,7 +281,7 @@ interactions: User-Agent: - Terraform/1.5.1 terraform-provider-btp/dev X-Correlationid: - - c59b5268-8035-7eb2-e4b3-f82f9fcdc12a + - 44f79f8f-6bf1-c46c-8368-30afcd685d54 X-Cpcli-Customidp: - "" X-Cpcli-Format: @@ -290,7 +290,7 @@ interactions: - redacted X-Cpcli-Subdomain: - terraformintcanary - url: https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/accounts/directory?get + url: https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/role?add method: POST response: proto: HTTP/2.0 @@ -300,14 +300,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"guid":"7aa86f24-4881-4e99-a735-1a1d401c92d5","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"my-parent-folder","description":"This is a parent folder","createdDate":"Jul 3, 2023, 10:09:53 AM","createdBy":"john.doe@int.test","modifiedDate":"Jul 3, 2023, 10:09:53 AM","entityState":"OK","stateMessage":"Directory created.","directoryType":"FOLDER","directoryFeatures":["DEFAULT"],"contractStatus":"ACTIVE"}' + body: "" headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Mon, 03 Jul 2023 10:09:58 GMT + - Mon, 03 Jul 2023 08:23:52 GMT Expires: - "0" Pragma: @@ -318,8 +318,6 @@ interactions: - max-age=31536000; includeSubDomains; preload; X-Content-Type-Options: - nosniff - X-Cpcli-Backend-Mediatype: - - application/json;charset=UTF-8 X-Cpcli-Backend-Status: - "200" X-Cpcli-Refreshtoken: @@ -329,12 +327,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 2f8a2ac9-26dc-4425-4efb-730ba7c0b8a8 + - 9f8cd4ad-ac7c-4b48-6a3b-4892078611d1 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 204.4978ms + duration: 206.7933ms - id: 5 request: proto: HTTP/1.1 @@ -355,7 +353,7 @@ interactions: User-Agent: - Terraform/1.5.1 terraform-provider-btp/dev X-Correlationid: - - a0ad8ab8-a609-1d9d-6e99-bb7d0f1bd41e + - 0e270a98-6878-33b8-e2f4-4933338cabee X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -377,7 +375,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 03 Jul 2023 10:09:59 GMT + - Mon, 03 Jul 2023 08:23:53 GMT Expires: - "0" Pragma: @@ -391,12 +389,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 73842637-a94a-45c9-7dd6-eb5b64a6b4fc + - e3393ef5-8e3e-49e2-60d4-55af2eae17fe X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 471.0285ms + duration: 436.9879ms - id: 6 request: proto: HTTP/1.1 @@ -417,7 +415,7 @@ interactions: User-Agent: - Terraform/1.5.1 terraform-provider-btp/dev X-Correlationid: - - 9b9e7d3f-0334-6d70-b91c-0539a35d3474 + - 752f2cb0-31ca-a37b-a133-256481fcae76 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -439,7 +437,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 03 Jul 2023 10:09:59 GMT + - Mon, 03 Jul 2023 08:23:54 GMT Expires: - "0" Pragma: @@ -453,25 +451,25 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 43b511e5-2731-4f76-7139-229098366c58 + - c0e35841-4313-4608-5ec0-fa26323e947d X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 449.901ms + duration: 428.8851ms - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 108 + content_length: 101 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"paramValues":{"directoryID":"7aa86f24-4881-4e99-a735-1a1d401c92d5","globalAccount":"terraformintcanary"}} + {"paramValues":{"globalAccount":"terraformintcanary","roleCollectionName":"My new role collection"}} form: {} headers: Content-Type: @@ -479,7 +477,7 @@ interactions: User-Agent: - Terraform/1.5.1 terraform-provider-btp/dev X-Correlationid: - - bb675d83-d571-08cc-818d-282f85fbe1aa + - 0b5ff2b9-db78-1964-9925-071c19589197 X-Cpcli-Customidp: - "" X-Cpcli-Format: @@ -488,7 +486,7 @@ interactions: - redacted X-Cpcli-Subdomain: - terraformintcanary - url: https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/accounts/directory?get + url: https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/role-collection?get method: POST response: proto: HTTP/2.0 @@ -498,14 +496,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"guid":"7aa86f24-4881-4e99-a735-1a1d401c92d5","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"my-parent-folder","description":"This is a parent folder","createdDate":"Jul 3, 2023, 10:09:53 AM","createdBy":"john.doe@int.test","modifiedDate":"Jul 3, 2023, 10:09:53 AM","entityState":"OK","stateMessage":"Directory created.","directoryType":"FOLDER","directoryFeatures":["DEFAULT"],"contractStatus":"ACTIVE"}' + body: '{"name":"My new role collection","description":"Description of my new role collection","roleReferences":[{"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."}],"isReadOnly":false}' headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Content-Type: - application/json Date: - - Mon, 03 Jul 2023 10:10:00 GMT + - Mon, 03 Jul 2023 08:23:54 GMT Expires: - "0" Pragma: @@ -517,7 +515,7 @@ interactions: X-Content-Type-Options: - nosniff X-Cpcli-Backend-Mediatype: - - application/json;charset=UTF-8 + - application/json X-Cpcli-Backend-Status: - "200" X-Cpcli-Refreshtoken: @@ -527,12 +525,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 49ed3d22-6167-48b0-6714-20ee291fe26a + - 02ed4430-4aa8-4204-5cca-d9a18fde2c29 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 408.0502ms + duration: 191.2356ms - id: 8 request: proto: HTTP/1.1 @@ -553,7 +551,7 @@ interactions: User-Agent: - Terraform/1.5.1 terraform-provider-btp/dev X-Correlationid: - - 6b1e9197-61c0-11e0-22ad-1fc0e7f65489 + - 40f087b8-62c0-5c57-b592-51a19d94ef62 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -575,7 +573,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 03 Jul 2023 10:10:00 GMT + - Mon, 03 Jul 2023 08:23:54 GMT Expires: - "0" Pragma: @@ -589,12 +587,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 66e8bd3b-c1d1-4531-61d4-3f505545e0bf + - 5d93488e-905b-4a0c-73c0-120a9126386a X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 506.8759ms + duration: 667.4017ms - id: 9 request: proto: HTTP/1.1 @@ -615,7 +613,7 @@ interactions: User-Agent: - Terraform/1.5.1 terraform-provider-btp/dev X-Correlationid: - - f747cae9-82c9-fecd-2f79-7459d85f5b4b + - fdc70140-da18-256c-2b87-593eb3eba10e X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -637,7 +635,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 03 Jul 2023 10:10:01 GMT + - Mon, 03 Jul 2023 08:23:55 GMT Expires: - "0" Pragma: @@ -651,12 +649,12 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - fc55639a-2e6d-4793-7d98-c376bcf69178 + - 7859ec3d-2ac7-411d-5998-699677fbec5f X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 474.2853ms + duration: 406.4767ms - id: 10 request: proto: HTTP/1.1 @@ -677,7 +675,7 @@ interactions: User-Agent: - Terraform/1.5.1 terraform-provider-btp/dev X-Correlationid: - - 4c57714e-f1f7-5401-5686-beb0aa1391ec + - b6b0e9c5-3eb6-a6a2-13de-d36dbb4ac720 X-Cpcli-Format: - json url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 @@ -699,7 +697,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 03 Jul 2023 10:10:01 GMT + - Mon, 03 Jul 2023 08:23:56 GMT Expires: - "0" Pragma: @@ -713,25 +711,25 @@ interactions: X-Frame-Options: - DENY X-Vcap-Request-Id: - - 62bcce83-e620-4de5-6971-74efccd7d460 + - 3cf79025-b959-4d03-6206-795254b9144b X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 457.5138ms + duration: 468.8532ms - id: 11 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 146 + content_length: 118 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"paramValues":{"confirm":"true","directoryID":"7aa86f24-4881-4e99-a735-1a1d401c92d5","forceDelete":"true","globalAccount":"terraformintcanary"}} + {"customIdp":"","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"redacted"} form: {} headers: Content-Type: @@ -739,16 +737,10 @@ interactions: User-Agent: - Terraform/1.5.1 terraform-provider-btp/dev X-Correlationid: - - 482d62ca-fc8b-06b1-9909-fae61a215201 - X-Cpcli-Customidp: - - "" + - 792f87d6-a194-0bae-41d6-3553d35402ec 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/directory?delete + url: https://cpcli.cf.sap.hana.ondemand.com/login/v2.38.0 method: POST response: proto: HTTP/2.0 @@ -756,16 +748,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"guid":"7aa86f24-4881-4e99-a735-1a1d401c92d5","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"my-parent-folder","description":"This is a parent folder","createdDate":"Jul 3, 2023, 10:09:53 AM","createdBy":"john.doe@int.test","modifiedDate":"Jul 3, 2023, 10:10:02 AM","entityState":"DELETING","directoryType":"FOLDER","directoryFeatures":["DEFAULT"],"contractStatus":"ACTIVE","jobId":"2769291"}' + content_length: 149 + 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: + - "149" Content-Type: - application/json Date: - - Mon, 03 Jul 2023 10:10:02 GMT + - Mon, 03 Jul 2023 08:23:56 GMT Expires: - "0" Pragma: @@ -776,36 +770,28 @@ interactions: - max-age=31536000; includeSubDomains; preload; X-Content-Type-Options: - nosniff - X-Cpcli-Backend-Mediatype: - - application/json;charset=UTF-8 - X-Cpcli-Backend-Status: - - "200" - X-Cpcli-Refreshtoken: - - redacted - X-Cpcli-Replacementrefreshtoken: - - redacted X-Frame-Options: - DENY X-Vcap-Request-Id: - - d26a45fa-8d86-4d0e-6593-2e4519ba0110 + - 28fa5e7f-40df-4f53-6bbf-b1495cf73684 X-Xss-Protection: - "0" status: 200 OK code: 200 - duration: 519.8227ms + duration: 458.0449ms - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 108 + content_length: 101 transfer_encoding: [] trailer: {} host: cpcli.cf.sap.hana.ondemand.com remote_addr: "" request_uri: "" body: | - {"paramValues":{"directoryID":"7aa86f24-4881-4e99-a735-1a1d401c92d5","globalAccount":"terraformintcanary"}} + {"paramValues":{"globalAccount":"terraformintcanary","roleCollectionName":"My new role collection"}} form: {} headers: Content-Type: @@ -813,7 +799,7 @@ interactions: User-Agent: - Terraform/1.5.1 terraform-provider-btp/dev X-Correlationid: - - 5f4f61e5-5580-efc9-d052-86298c9129f4 + - fe9211b5-6021-8b09-4f95-3237ef53b63d X-Cpcli-Customidp: - "" X-Cpcli-Format: @@ -822,7 +808,7 @@ interactions: - redacted X-Cpcli-Subdomain: - terraformintcanary - url: https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/accounts/directory?get + url: https://cpcli.cf.sap.hana.ondemand.com/command/v2.38.0/security/role-collection?delete method: POST response: proto: HTTP/2.0 @@ -830,16 +816,16 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 - uncompressed: false + content_length: -1 + uncompressed: true body: "" headers: Cache-Control: - no-cache, no-store, max-age=0, must-revalidate - Content-Length: - - "0" + Content-Type: + - application/json Date: - - Mon, 03 Jul 2023 10:10:07 GMT + - Mon, 03 Jul 2023 08:23:56 GMT Expires: - "0" Pragma: @@ -850,18 +836,18 @@ interactions: - max-age=31536000; includeSubDomains; preload; X-Content-Type-Options: - nosniff + X-Cpcli-Backend-Status: + - "200" X-Cpcli-Refreshtoken: - redacted X-Cpcli-Replacementrefreshtoken: - redacted - X-Cpcli-Server-Message: - - Directory '7aa86f24-4881-4e99-a735-1a1d401c92d5' does not exist. Make sure to provide the ID of a directory. X-Frame-Options: - DENY X-Vcap-Request-Id: - - 2ddeadaa-5b0e-4a5e-7718-79212698112b + - 67192a5d-9813-486c-58ef-76f2b73b6bfa X-Xss-Protection: - "0" - status: 404 Not Found - code: 404 - duration: 164.9317ms + status: 200 OK + code: 200 + duration: 165.3001ms diff --git a/internal/provider/provider.go b/internal/provider/provider.go index b62d17d7..bd28b524 100644 --- a/internal/provider/provider.go +++ b/internal/provider/provider.go @@ -200,12 +200,6 @@ func (p *btpcliProvider) DataSources(ctx context.Context) []func() datasource.Da newSubaccountServiceBrokersDataSource, newSubaccountServiceBindingDataSource, newSubaccountServiceBindingsDataSource, - newSubaccountServiceInstanceDataSource, - newSubaccountServiceInstancesDataSource, - newSubaccountServiceOfferingDataSource, - newSubaccountServiceOfferingsDataSource, - newSubaccountServicePlanDataSource, - newSubaccountServicePlansDataSource, newSubaccountServicePlatformDataSource, newSubaccountServicePlatformsDataSource, } @@ -247,6 +241,12 @@ func (p *btpcliProvider) DataSources(ctx context.Context) []func() datasource.Da newSubaccountRoleCollectionsDataSource, newSubaccountRoleDataSource, newSubaccountRolesDataSource, + newSubaccountServiceInstanceDataSource, + newSubaccountServiceInstancesDataSource, + newSubaccountServiceOfferingDataSource, + newSubaccountServiceOfferingsDataSource, + newSubaccountServicePlanDataSource, + newSubaccountServicePlansDataSource, newSubaccountTrustConfigurationDataSource, newSubaccountTrustConfigurationsDataSource, newSubaccountUserDataSource, diff --git a/internal/provider/provider_test.go b/internal/provider/provider_test.go index 76e4a9a4..b447feaa 100644 --- a/internal/provider/provider_test.go +++ b/internal/provider/provider_test.go @@ -276,12 +276,14 @@ func TestProvider_HasDatasources(t *testing.T) { "btp_subaccount_service_bindings", "btp_subaccount_service_broker", "btp_subaccount_service_brokers", + */ "btp_subaccount_service_instance", "btp_subaccount_service_instances", "btp_subaccount_service_offering", "btp_subaccount_service_offerings", "btp_subaccount_service_plan", "btp_subaccount_service_plans", + /* "btp_subaccount_service_platform", "btp_subaccount_service_platforms", */ diff --git a/internal/provider/resource_directory.go b/internal/provider/resource_directory.go index 2e815523..ce5d584f 100644 --- a/internal/provider/resource_directory.go +++ b/internal/provider/resource_directory.go @@ -84,7 +84,7 @@ __Further documentation:__ Optional: true, Computed: true, PlanModifiers: []planmodifier.String{ - stringplanmodifier.RequiresReplace(), + stringplanmodifier.RequiresReplaceIfConfigured(), }, Validators: []validator.String{ stringvalidator.RegexMatches(regexp.MustCompile("^[a-z0-9](?:[a-z0-9|-]{0,61}[a-z0-9])?$"), "must only contain letters (a-z), digits (0-9), and hyphens (not at the start or end)"), @@ -101,6 +101,9 @@ __Further documentation:__ "id": schema.StringAttribute{ MarkdownDescription: "The ID of the directory.", Computed: true, + PlanModifiers: []planmodifier.String{ + stringplanmodifier.UseStateForUnknown(), + }, }, "created_by": schema.StringAttribute{ MarkdownDescription: "The details of the user that created the directory.", @@ -256,19 +259,62 @@ func (rs *directoryResource) Update(ctx context.Context, req resource.UpdateRequ return } - resp.Diagnostics.AddError("API Error Updating Resource Directory", "Update is not yet implemented.") + args := btpcli.DirectoryUpdateInput{ + DirectoryId: plan.ID.ValueString(), + } + + if !plan.Name.IsUnknown() { + displayName := plan.Name.ValueString() + args.DisplayName = &displayName + } + + if !plan.Description.IsUnknown() { + description := plan.Description.ValueString() + args.Description = &description + } - /*TODO: cliRes, err := rs.cli.Execute(ctx, btpcli.Update, rs.command, plan) + if !plan.Labels.IsUnknown() { + var labels map[string][]string + plan.Labels.ElementsAs(ctx, &labels, false) + args.Labels = labels + } + + cliRes, _, err := rs.cli.Accounts.Directory.Update(ctx, &args) if err != nil { resp.Diagnostics.AddError("API Error Updating Resource Directory", fmt.Sprintf("%s", err)) return - }*/ + } - diags = resp.State.Set(ctx, plan) + plan, diags = directoryValueFrom(ctx, cliRes) resp.Diagnostics.Append(diags...) - if resp.Diagnostics.HasError() { - return + + createStateConf := &tfutils.StateChangeConf{ + Pending: []string{cis.StateUpdating, cis.StateStarted}, + Target: []string{cis.StateOK, cis.StateUpdateFailed, cis.StateCanceled}, + Refresh: func() (interface{}, string, error) { + subRes, _, err := rs.cli.Accounts.Directory.Get(ctx, cliRes.Guid) + + if err != nil { + return subRes, "", err + } + + return subRes, subRes.EntityState, nil + }, + Timeout: 10 * time.Minute, + Delay: 5 * time.Second, + MinTimeout: 5 * time.Second, } + + updatedRes, err := createStateConf.WaitForStateContext(ctx) + if err != nil { + resp.Diagnostics.AddError("API Error Creating Resource Directory", fmt.Sprintf("%s", err)) + } + + plan, diags = directoryValueFrom(ctx, updatedRes.(cis.DirectoryResponseObject)) + resp.Diagnostics.Append(diags...) + + diags = resp.State.Set(ctx, plan) + resp.Diagnostics.Append(diags...) } func (rs *directoryResource) Delete(ctx context.Context, req resource.DeleteRequest, resp *resource.DeleteResponse) { diff --git a/internal/provider/resource_directory_test.go b/internal/provider/resource_directory_test.go index b872930d..fc723b37 100644 --- a/internal/provider/resource_directory_test.go +++ b/internal/provider/resource_directory_test.go @@ -8,8 +8,9 @@ import ( ) func TestResourceDirectory(t *testing.T) { + t.Parallel() t.Run("happy path - parent directory", func(t *testing.T) { - rec := setupVCR(t, "fixtures/resource_directory.parent_directory") + rec := setupVCR(t, "fixtures/resource_directory") defer stopQuietly(rec) resource.Test(t, resource.TestCase{ @@ -17,16 +18,25 @@ func TestResourceDirectory(t *testing.T) { ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), Steps: []resource.TestStep{ { - Config: hclProvider() + hclResourceDirectoryParent("uut", "my-parent-folder", "This is a parent folder"), + Config: hclProvider() + 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), resource.TestMatchResourceAttr("btp_directory.uut", "last_modified", regexpValidRFC3999Format), resource.TestMatchResourceAttr("btp_directory.uut", "parent_id", regexpValidUUID), - - resource.TestCheckResourceAttr("btp_directory.uut", "name", "my-parent-folder"), - resource.TestCheckResourceAttr("btp_directory.uut", "description", "This is a parent folder"), - resource.TestCheckResourceAttr("btp_directory.uut", "subdomain", ""), + resource.TestCheckResourceAttr("btp_directory.uut", "name", "my-new-directory"), + resource.TestCheckResourceAttr("btp_directory.uut", "description", "This is a new directory"), + ), + }, + { + Config: hclProvider() + 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), + resource.TestMatchResourceAttr("btp_directory.uut", "last_modified", regexpValidRFC3999Format), + resource.TestMatchResourceAttr("btp_directory.uut", "parent_id", regexpValidUUID), + resource.TestCheckResourceAttr("btp_directory.uut", "name", "my-updated-directory"), + resource.TestCheckResourceAttr("btp_directory.uut", "description", "This is a updated directory"), ), }, /* { @@ -39,7 +49,7 @@ func TestResourceDirectory(t *testing.T) { }) } -func hclResourceDirectoryParent(resourceName string, displayName string, description string) string { +func hclResourceDirectory(resourceName string, displayName string, description string) string { return fmt.Sprintf(`resource "btp_directory" "%s" { name = "%s" description = "%s" diff --git a/internal/provider/resource_globalaccount_role.go b/internal/provider/resource_globalaccount_role.go index e1fcd24b..dcf8e01a 100644 --- a/internal/provider/resource_globalaccount_role.go +++ b/internal/provider/resource_globalaccount_role.go @@ -3,7 +3,9 @@ package provider import ( "context" "fmt" + "strings" + "github.com/hashicorp/terraform-plugin-framework/path" "github.com/hashicorp/terraform-plugin-framework/resource" "github.com/hashicorp/terraform-plugin-framework/resource/schema" @@ -142,3 +144,20 @@ func (rs *globalaccountRoleResource) Delete(ctx context.Context, req resource.De return } } + +func (rs *globalaccountRoleResource) ImportState(ctx context.Context, req resource.ImportStateRequest, resp *resource.ImportStateResponse) { + idParts := strings.Split(req.ID, ",") + + if len(idParts) != 3 || idParts[0] == "" || idParts[1] == "" || idParts[2] == "" { + resp.Diagnostics.AddError( + "Unexpected Import Identifier", + fmt.Sprintf("Expected import identifier with format: name, role_template_name, app_id. Got: %q", req.ID), + ) + return + } + + resp.Diagnostics.Append(resp.State.SetAttribute(ctx, path.Root("name"), idParts[0])...) + resp.Diagnostics.Append(resp.State.SetAttribute(ctx, path.Root("role_template_name"), idParts[1])...) + resp.Diagnostics.Append(resp.State.SetAttribute(ctx, path.Root("app_id"), idParts[2])...) + +} diff --git a/internal/provider/resource_globalaccount_role_collection.go b/internal/provider/resource_globalaccount_role_collection.go index 8a282134..89d16553 100644 --- a/internal/provider/resource_globalaccount_role_collection.go +++ b/internal/provider/resource_globalaccount_role_collection.go @@ -3,7 +3,9 @@ package provider import ( "context" "fmt" + "strings" + "github.com/hashicorp/terraform-plugin-framework/path" "github.com/hashicorp/terraform-plugin-framework/resource" "github.com/hashicorp/terraform-plugin-framework/resource/schema" @@ -108,6 +110,9 @@ func (rs *globalaccountRoleCollectionResource) Read(ctx context.Context, req res state.Name = types.StringValue(cliRes.Name) state.Description = types.StringValue(cliRes.Description) + // Setting ID of state - required by hashicorps terraform plugin testing framework for Create . See issue https://github.com/hashicorp/terraform-plugin-testing/issues/84 + state.Id = state.Name + state.Roles = []globalaccountRoleCollectionRoleRefType{} for _, role := range cliRes.RoleReferences { state.Roles = append(state.Roles, globalaccountRoleCollectionRoleRefType{ @@ -137,6 +142,7 @@ func (rs *globalaccountRoleCollectionResource) Create(ctx context.Context, req r plan.Name = types.StringValue(cliRes.Name) plan.Description = types.StringValue(cliRes.Description) + // Setting ID of state - required by hashicorps terraform plugin testing framework for Create . See issue https://github.com/hashicorp/terraform-plugin-testing/issues/84 plan.Id = types.StringValue(cliRes.Name) for _, role := range plan.Roles { @@ -188,3 +194,18 @@ func (rs *globalaccountRoleCollectionResource) Delete(ctx context.Context, req r return } } + +func (rs *globalaccountRoleCollectionResource) ImportState(ctx context.Context, req resource.ImportStateRequest, resp *resource.ImportStateResponse) { + idParts := strings.Split(req.ID, ",") + + if len(idParts) != 1 || idParts[0] == "" { + resp.Diagnostics.AddError( + "Unexpected Import Identifier", + fmt.Sprintf("Expected import identifier with format: name. Got: %q", req.ID), + ) + return + } + + resp.Diagnostics.Append(resp.State.SetAttribute(ctx, path.Root("name"), idParts[0])...) + +} diff --git a/internal/provider/resource_globalaccount_role_collection_test.go b/internal/provider/resource_globalaccount_role_collection_test.go index 90fcf455..616ec61b 100644 --- a/internal/provider/resource_globalaccount_role_collection_test.go +++ b/internal/provider/resource_globalaccount_role_collection_test.go @@ -3,6 +3,7 @@ package provider import ( "encoding/json" "fmt" + "regexp" "testing" "github.com/hashicorp/terraform-plugin-testing/helper/resource" @@ -32,6 +33,34 @@ func TestResourceGlobalAccountRoleCollection(t *testing.T) { resource.TestCheckResourceAttr("btp_globalaccount_role_collection.uut", "roles.#", "1"), ), }, + { + ResourceName: "btp_globalaccount_role_collection.uut", + ImportStateId: "My new role collection", + ImportState: true, + ImportStateVerify: true, + }, + }, + }) + }) + + t.Run("error path - import fails", func(t *testing.T) { + rec := setupVCR(t, "fixtures/resource_globalaccount_role_collection_import_error") + defer stopQuietly(rec) + + resource.Test(t, resource.TestCase{ + IsUnitTest: true, + ProtoV6ProviderFactories: getProviders(rec.GetDefaultClient()), + Steps: []resource.TestStep{ + { + Config: hclProvider() + hclResourceGlobalAccountRoleCollection("uut", "My new role collection", "Description of my new role collection", "Global Account Viewer", "cis-central!b13", "GlobalAccount_Viewer"), + }, + { + ResourceName: "btp_globalaccount_role_collection.uut", + ImportStateId: "ef23ace8-6ade-4d78-9c1f-8df729548bbf,My new role collection", + ImportState: true, + ImportStateVerify: true, + ExpectError: regexp.MustCompile(`Expected import identifier with format: name. Got:`), + }, }, }) }) @@ -51,6 +80,6 @@ func hclResourceGlobalAccountRoleCollection(resourceName string, displayName str return fmt.Sprintf(`resource "btp_globalaccount_role_collection" "%s" { name = "%s" description = "%s" - roles = %v + roles = %v }`, resourceName, displayName, description, string(rolesJson)) }