<< home <<
+ home
+
New domain
@@ -27,13 +30,25 @@
New domain
A name for your security domain. The security domain's name is used to generate the security domain's path. The security
- domain's path will be used as a context path for the API operations.
+ domain's path will be used as a context path for the API operations.
+
+
A description for your security domain.
+ @if (!oneDataPlane) {
+
+ Data Plane
+
+ @for (dp of dataPlanes; track dp) {
+ {{ dp.name }}
+ }
+
+ Data plane to be used with this domain.
+
+ }
New domain
fxLayoutAlign="center center"
style="margin-top: 20px; border-top: 1px solid #e2e5e7; padding: 10px"
>
- CREATE
+ CREATE
CANCEL
diff --git a/gravitee-am-ui/src/app/domain/creation/domain-creation.component.ts b/gravitee-am-ui/src/app/domain/creation/domain-creation.component.ts
index 71df851da83..d8d2f1afe32 100644
--- a/gravitee-am-ui/src/app/domain/creation/domain-creation.component.ts
+++ b/gravitee-am-ui/src/app/domain/creation/domain-creation.component.ts
@@ -27,7 +27,9 @@ import { SnackbarService } from '../../services/snackbar.service';
})
export class DomainCreationComponent implements OnInit {
domain: any = {};
+ dataPlanes: any[];
displayNavLink: boolean;
+ oneDataPlane = false;
@ViewChild('createDomainBtn', { static: true }) createDomainBtn: any;
constructor(
@@ -39,6 +41,11 @@ export class DomainCreationComponent implements OnInit {
ngOnInit() {
this.displayNavLink = !this.router.url.startsWith('/settings');
+ this.dataPlanes = this.route.snapshot.data['dataPlanes'];
+ if (this.dataPlanes.length === 1) {
+ this.domain.dataPlaneId = this.dataPlanes[0].id;
+ this.oneDataPlane = true;
+ }
}
create() {
diff --git a/gravitee-am-ui/src/app/resolvers/data-planes.resolver.spec.ts b/gravitee-am-ui/src/app/resolvers/data-planes.resolver.spec.ts
new file mode 100644
index 00000000000..33f9657b433
--- /dev/null
+++ b/gravitee-am-ui/src/app/resolvers/data-planes.resolver.spec.ts
@@ -0,0 +1,32 @@
+/*
+ * Copyright (C) 2015 The Gravitee team (http://gravitee.io)
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+import { TestBed } from '@angular/core/testing';
+import { ResolveFn } from '@angular/router';
+
+import { dataPlanesResolver } from './data-planes.resolver';
+
+describe('dataPlanesResolver', () => {
+ const executeResolver: ResolveFn
= (...resolverParameters) =>
+ TestBed.runInInjectionContext(() => dataPlanesResolver(...resolverParameters));
+
+ beforeEach(() => {
+ TestBed.configureTestingModule({});
+ });
+
+ it('should be created', () => {
+ expect(executeResolver).toBeTruthy();
+ });
+});
diff --git a/gravitee-am-ui/src/app/resolvers/data-planes.resolver.ts b/gravitee-am-ui/src/app/resolvers/data-planes.resolver.ts
new file mode 100644
index 00000000000..9a7c9a2b875
--- /dev/null
+++ b/gravitee-am-ui/src/app/resolvers/data-planes.resolver.ts
@@ -0,0 +1,28 @@
+/*
+ * Copyright (C) 2015 The Gravitee team (http://gravitee.io)
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+import { Injectable } from '@angular/core';
+import { Observable } from 'rxjs';
+
+import { DataPlaneService } from '../services/data-plane.service';
+
+@Injectable()
+export class DataPlanesResolver {
+ constructor(private dataPlaneService: DataPlaneService) {}
+
+ resolve(): Observable {
+ return this.dataPlaneService.list();
+ }
+}
diff --git a/gravitee-am-ui/src/app/services/data-plane.service.spec.ts b/gravitee-am-ui/src/app/services/data-plane.service.spec.ts
new file mode 100644
index 00000000000..9c48a801e8d
--- /dev/null
+++ b/gravitee-am-ui/src/app/services/data-plane.service.spec.ts
@@ -0,0 +1,31 @@
+/*
+ * Copyright (C) 2015 The Gravitee team (http://gravitee.io)
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+import { TestBed } from '@angular/core/testing';
+
+import { DataPlaneService } from './data-plane.service';
+
+describe('DataPlaneService', () => {
+ let service: DataPlaneService;
+
+ beforeEach(() => {
+ TestBed.configureTestingModule({});
+ service = TestBed.inject(DataPlaneService);
+ });
+
+ it('should be created', () => {
+ expect(service).toBeTruthy();
+ });
+});
diff --git a/gravitee-am-ui/src/app/services/data-plane.service.ts b/gravitee-am-ui/src/app/services/data-plane.service.ts
new file mode 100644
index 00000000000..85aba60112f
--- /dev/null
+++ b/gravitee-am-ui/src/app/services/data-plane.service.ts
@@ -0,0 +1,30 @@
+/*
+ * Copyright (C) 2015 The Gravitee team (http://gravitee.io)
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+import { Injectable } from '@angular/core';
+import { HttpClient } from '@angular/common/http';
+import { Observable } from 'rxjs';
+
+import { AppConfig } from '../../config/app.config';
+
+@Injectable()
+export class DataPlaneService {
+ private baseURL: string = AppConfig.settings.environmentBaseURL;
+ constructor(private http: HttpClient) {}
+
+ list(): Observable {
+ return this.http.get(this.baseURL + '/data-planes');
+ }
+}
diff --git a/gravitee-am-ui/src/main.ts b/gravitee-am-ui/src/main.ts
index ce65d552027..d764fbd0cdb 100644
--- a/gravitee-am-ui/src/main.ts
+++ b/gravitee-am-ui/src/main.ts
@@ -58,6 +58,7 @@ forkJoin([constants, build]).subscribe((response) => {
Object.keys(response[1]).forEach((key) => (AppConfig.settings[key] = response[1][key]));
AppConfig.settings.portalTitle = PORTAL_TITLE;
AppConfig.settings.organizationBaseURL = AppConfig.settings.baseURL + '/organizations/' + DEFAULT_ORGANIZATION;
+ AppConfig.settings.environmentBaseURL = AppConfig.settings.organizationBaseURL + '/environments/' + DEFAULT_ENV;
AppConfig.settings.domainBaseURL = AppConfig.settings.organizationBaseURL + '/environments/' + DEFAULT_ENV + '/domains/';
const resourceURL = `${AppConfig.settings.baseURL}/platform/license`;
const trialResourceURL = 'https://gravitee.io/self-hosted-trial';
diff --git a/postman/collections/graviteeio-am-api-management-collection.json b/postman/collections/graviteeio-am-api-management-collection.json
index 11d5c9f78a0..d80557b7ad1 100644
--- a/postman/collections/graviteeio-am-api-management-collection.json
+++ b/postman/collections/graviteeio-am-api-management-collection.json
@@ -751,7 +751,7 @@
],
"body": {
"mode": "raw",
- "raw": "{\n\t\"name\": \"social\", \n\t\"description\": \"test management login with social provider\"\n}"
+ "raw": "{\n\t\"name\": \"social\", \n\t\"description\": \"test management login with social provider\", \n\t\"dataPlaneId\": \"default\"\n}"
},
"url": {
"raw": "{{management_url}}/management/organizations/{{defaultOrganizationId}}/environments/{{defaultEnvironmentId}}/domains/",
@@ -1941,7 +1941,7 @@
],
"body": {
"mode": "raw",
- "raw": "{\n\t\"name\": \"alert\", \n\t\"description\": \"test alerting on domain\"\n}"
+ "raw": "{\n\t\"name\": \"alert\", \n\t\"description\": \"test alerting on domain\", \n\t\"dataPlaneId\": \"default\"\n}"
},
"url": {
"raw": "{{management_url}}/management/organizations/{{defaultOrganizationId}}/environments/{{defaultEnvironmentId}}/domains/",
@@ -2381,4 +2381,4 @@
]
}
]
-}
\ No newline at end of file
+}
diff --git a/postman/collections/graviteeio-am-client-management-collection-app-version.json b/postman/collections/graviteeio-am-client-management-collection-app-version.json
index 7d66317ced6..e87af7de607 100644
--- a/postman/collections/graviteeio-am-client-management-collection-app-version.json
+++ b/postman/collections/graviteeio-am-client-management-collection-app-version.json
@@ -102,7 +102,7 @@
],
"body": {
"mode": "raw",
- "raw": "{\n\t\"name\": \"applications-app-version\", \n\t\"description\": \"test application management through Access Management API\"\n}"
+ "raw": "{\n\t\"name\": \"applications-app-version\", \n\t\"description\": \"test application management through Access Management API\", \n\t\"dataPlaneId\": \"default\"\n}"
},
"url": {
"raw": "{{management_url}}/management/organizations/{{defaultOrganizationId}}/environments/{{defaultEnvironmentId}}/domains/",
@@ -1255,4 +1255,4 @@
"response": []
}
]
-}
\ No newline at end of file
+}
diff --git a/postman/collections/graviteeio-am-flows-collection-app-version.json b/postman/collections/graviteeio-am-flows-collection-app-version.json
index cf56203845c..2becce4a300 100644
--- a/postman/collections/graviteeio-am-flows-collection-app-version.json
+++ b/postman/collections/graviteeio-am-flows-collection-app-version.json
@@ -103,7 +103,7 @@
],
"body": {
"mode": "raw",
- "raw": "{\n\t\"name\": \"flows-app-version\", \n\t\"description\": \"test flows\"\n}"
+ "raw": "{\n\t\"name\": \"flows-app-version\", \n\t\"description\": \"test flows\", \n\t\"dataPlaneId\": \"default\"\n}"
},
"url": {
"raw": "{{management_url}}/management/organizations/{{defaultOrganizationId}}/environments/{{defaultEnvironmentId}}/domains/",
@@ -1580,4 +1580,4 @@
"response": []
}
]
-}
\ No newline at end of file
+}
diff --git a/postman/collections/graviteeio-am-login-collection-app-version.json b/postman/collections/graviteeio-am-login-collection-app-version.json
index 2a2083f5d87..faec04daf9d 100644
--- a/postman/collections/graviteeio-am-login-collection-app-version.json
+++ b/postman/collections/graviteeio-am-login-collection-app-version.json
@@ -103,7 +103,7 @@
],
"body": {
"mode": "raw",
- "raw": "{\n\t\"name\": \"login-app-version\", \n\t\"description\": \"test login flows\"\n}"
+ "raw": "{\n\t\"name\": \"login-app-version\", \n\t\"description\": \"test login flows\", \n\t\"dataPlaneId\": \"default\"\n}"
},
"url": {
"raw": "{{management_url}}/management/organizations/{{defaultOrganizationId}}/environments/{{defaultEnvironmentId}}/domains/",
@@ -16386,4 +16386,4 @@
}
}
]
-}
\ No newline at end of file
+}
diff --git a/postman/collections/graviteeio-am-logout-collection-app-version.json b/postman/collections/graviteeio-am-logout-collection-app-version.json
index c39465de034..83cb7129080 100644
--- a/postman/collections/graviteeio-am-logout-collection-app-version.json
+++ b/postman/collections/graviteeio-am-logout-collection-app-version.json
@@ -103,7 +103,7 @@
],
"body": {
"mode": "raw",
- "raw": "{\n\t\"name\": \"logout-app-version\", \n\t\"description\": \"test logout flows\"\n}"
+ "raw": "{\n\t\"name\": \"logout-app-version\", \n\t\"description\": \"test logout flows\", \n\t\"dataPlaneId\": \"default\"\n}"
},
"url": {
"raw": "{{management_url}}/management/organizations/{{defaultOrganizationId}}/environments/{{defaultEnvironmentId}}/domains/",
@@ -1757,4 +1757,4 @@
"response": []
}
]
-}
\ No newline at end of file
+}
diff --git a/postman/collections/graviteeio-am-oauth2-collection-app-version.json b/postman/collections/graviteeio-am-oauth2-collection-app-version.json
index 273d274376f..5d6efeb1828 100644
--- a/postman/collections/graviteeio-am-oauth2-collection-app-version.json
+++ b/postman/collections/graviteeio-am-oauth2-collection-app-version.json
@@ -104,7 +104,7 @@
],
"body": {
"mode": "raw",
- "raw": "{\n\t\"name\": \"oauth2-app-version\", \n\t\"description\": \"test oauth2 authorization framework specifications\"\n}"
+ "raw": "{\n\t\"name\": \"oauth2-app-version\", \n\t\"description\": \"test oauth2 authorization framework specifications\", \n\t\"dataPlaneId\": \"default\"\n}"
},
"url": {
"raw": "{{management_url}}/management/organizations/{{defaultOrganizationId}}/environments/{{defaultEnvironmentId}}/domains/",
@@ -13487,7 +13487,7 @@
],
"body": {
"mode": "raw",
- "raw": "{\n\t\"name\": \"cross-app-version\", \n\t\"description\": \"test cross domain authorization framework specifications\"\n}"
+ "raw": "{\n\t\"name\": \"cross-app-version\", \n\t\"description\": \"test cross domain authorization framework specifications\", \n\t\"dataPlaneId\": \"default\"\n}"
},
"url": {
"raw": "{{management_url}}/management/organizations/{{defaultOrganizationId}}/environments/{{defaultEnvironmentId}}/domains/",
diff --git a/postman/collections/graviteeio-am-oauth2-par-version.json b/postman/collections/graviteeio-am-oauth2-par-version.json
index f9ba2d3710a..199685945e3 100644
--- a/postman/collections/graviteeio-am-oauth2-par-version.json
+++ b/postman/collections/graviteeio-am-oauth2-par-version.json
@@ -104,7 +104,7 @@
],
"body": {
"mode": "raw",
- "raw": "{\n\t\"name\": \"oauth2-par\", \n\t\"description\": \"test oauth2 authorization framework specifications using PAR\"\n}"
+ "raw": "{\n\t\"name\": \"oauth2-par\", \n\t\"description\": \"test oauth2 authorization framework specifications using PAR\", \n\t\"dataPlaneId\": \"default\"\n}"
},
"url": {
"raw": "{{management_url}}/management/organizations/{{defaultOrganizationId}}/environments/{{defaultEnvironmentId}}/domains/",
diff --git a/postman/collections/graviteeio-am-openid-ciba-collection.json b/postman/collections/graviteeio-am-openid-ciba-collection.json
index 73bc2cd97b8..a2941954f58 100644
--- a/postman/collections/graviteeio-am-openid-ciba-collection.json
+++ b/postman/collections/graviteeio-am-openid-ciba-collection.json
@@ -155,7 +155,7 @@
],
"body": {
"mode": "raw",
- "raw": "{\n\t\"name\": \"ciba\", \n\t\"description\": \"test OpenID Connect Client-Initiated Backchannel Authentication Flow specifications\"\n}"
+ "raw": "{\n\t\"name\": \"ciba\", \n\t\"description\": \"test OpenID Connect Client-Initiated Backchannel Authentication Flow specifications\", \n\t\"dataPlaneId\": \"default\"\n}"
},
"url": {
"raw": "{{management_url}}/management/organizations/{{defaultOrganizationId}}/environments/{{defaultEnvironmentId}}/domains/",
@@ -211,7 +211,7 @@
],
"body": {
"mode": "raw",
- "raw": "{\n\t\"name\": \"notciba\", \n\t\"description\": \"standard domain without CIBA enabled\"\n}"
+ "raw": "{\n\t\"name\": \"notciba\", \n\t\"description\": \"standard domain without CIBA enabled\", \n\t\"dataPlaneId\": \"default\"\n}"
},
"url": {
"raw": "{{management_url}}/management/organizations/{{defaultOrganizationId}}/environments/{{defaultEnvironmentId}}/domains/",
diff --git a/postman/collections/graviteeio-am-openid-core-collection-app-version.json b/postman/collections/graviteeio-am-openid-core-collection-app-version.json
index ce0df69cbde..b03bbb2e9fe 100644
--- a/postman/collections/graviteeio-am-openid-core-collection-app-version.json
+++ b/postman/collections/graviteeio-am-openid-core-collection-app-version.json
@@ -104,7 +104,7 @@
],
"body": {
"mode": "raw",
- "raw": "{\n\t\"name\": \"oidc-core-app-version\", \n\t\"description\": \"test openid connect core specifications\"\n}"
+ "raw": "{\n\t\"name\": \"oidc-core-app-version\", \n\t\"description\": \"test openid connect core specifications\", \n\t\"dataPlaneId\": \"default\"\n}"
},
"url": {
"raw": "{{management_url}}/management/organizations/{{defaultOrganizationId}}/environments/{{defaultEnvironmentId}}/domains/",
diff --git a/postman/collections/graviteeio-am-openid-core-request-object-collection.json b/postman/collections/graviteeio-am-openid-core-request-object-collection.json
index 4415ac3730b..3654a4b0775 100644
--- a/postman/collections/graviteeio-am-openid-core-request-object-collection.json
+++ b/postman/collections/graviteeio-am-openid-core-request-object-collection.json
@@ -111,7 +111,7 @@
],
"body": {
"mode": "raw",
- "raw": "{\n\t\"name\": \"request-object\", \n\t\"description\": \"test request object parameters\"\n}"
+ "raw": "{\n\t\"name\": \"request-object\", \n\t\"description\": \"test request object parameters\", \n\t\"dataPlaneId\": \"default\"\n}"
},
"url": {
"raw": "{{management_url}}/management/organizations/{{defaultOrganizationId}}/environments/{{defaultEnvironmentId}}/domains/",
diff --git a/postman/collections/graviteeio-am-openid-dcr-collection-app-version.json b/postman/collections/graviteeio-am-openid-dcr-collection-app-version.json
index d5cef11e002..76a723f9615 100644
--- a/postman/collections/graviteeio-am-openid-dcr-collection-app-version.json
+++ b/postman/collections/graviteeio-am-openid-dcr-collection-app-version.json
@@ -111,7 +111,7 @@
],
"body": {
"mode": "raw",
- "raw": "{\n\t\"name\": \"dcr-app-version\", \n\t\"description\": \"test dynamic client registration\"\n}"
+ "raw": "{\n\t\"name\": \"dcr-app-version\", \n\t\"description\": \"test dynamic client registration\", \n\t\"dataPlaneId\": \"default\"\n}"
},
"url": {
"raw": "{{management_url}}/management/organizations/{{defaultOrganizationId}}/environments/{{defaultEnvironmentId}}/domains/",
diff --git a/postman/collections/graviteeio-am-openid-fapi-collection.json b/postman/collections/graviteeio-am-openid-fapi-collection.json
index 0fdae868181..af074fe5921 100644
--- a/postman/collections/graviteeio-am-openid-fapi-collection.json
+++ b/postman/collections/graviteeio-am-openid-fapi-collection.json
@@ -110,7 +110,7 @@
],
"body": {
"mode": "raw",
- "raw": "{\n\t\"name\": \"fapi\", \n\t\"description\": \"test fapi parameters\"\n}"
+ "raw": "{\n\t\"name\": \"fapi\", \n\t\"description\": \"test fapi parameters\", \n\t\"dataPlaneId\": \"default\"\n}"
},
"url": {
"raw": "{{management_url}}/management/organizations/{{defaultOrganizationId}}/environments/{{defaultEnvironmentId}}/domains/",
diff --git a/postman/collections/graviteeio-am-openid-jarm-collection.json b/postman/collections/graviteeio-am-openid-jarm-collection.json
index a9a4b2618f4..8a59674ead3 100644
--- a/postman/collections/graviteeio-am-openid-jarm-collection.json
+++ b/postman/collections/graviteeio-am-openid-jarm-collection.json
@@ -111,7 +111,7 @@
],
"body": {
"mode": "raw",
- "raw": "{\n\t\"name\": \"jarm\", \n\t\"description\": \"Test OpenID JARM specification\"\n}"
+ "raw": "{\n\t\"name\": \"jarm\", \n\t\"description\": \"Test OpenID JARM specification\", \n\t\"dataPlaneId\": \"default\"\n}"
},
"url": {
"raw": "{{management_url}}/management/organizations/{{defaultOrganizationId}}/environments/{{defaultEnvironmentId}}/domains/",
diff --git a/postman/collections/graviteeio-am-scim-collection-app-version.json b/postman/collections/graviteeio-am-scim-collection-app-version.json
index 1d4d1718035..fea7dc094b1 100644
--- a/postman/collections/graviteeio-am-scim-collection-app-version.json
+++ b/postman/collections/graviteeio-am-scim-collection-app-version.json
@@ -104,7 +104,7 @@
],
"body": {
"mode": "raw",
- "raw": "{\n\t\"name\": \"scim-domain-app-version\", \n\t\"description\": \"test System for Cross-domain Identity Management specifications\"\n}"
+ "raw": "{\n\t\"name\": \"scim-domain-app-version\", \n\t\"description\": \"test System for Cross-domain Identity Management specifications\", \n\t\"dataPlaneId\": \"default\"\n}"
},
"url": {
"raw": "{{management_url}}/management/organizations/{{defaultOrganizationId}}/environments/{{defaultEnvironmentId}}/domains/",
diff --git a/postman/collections/graviteeio-am-scope-management-collection.json b/postman/collections/graviteeio-am-scope-management-collection.json
index 25d1923fc2d..4f13b7f464b 100644
--- a/postman/collections/graviteeio-am-scope-management-collection.json
+++ b/postman/collections/graviteeio-am-scope-management-collection.json
@@ -103,7 +103,7 @@
],
"body": {
"mode": "raw",
- "raw": "{\n\t\"name\": \"scope\", \n\t\"description\": \"test scope management\"\n}"
+ "raw": "{\n\t\"name\": \"scope\", \n\t\"description\": \"test scope management\", \n\t\"dataPlaneId\": \"default\"\n}"
},
"url": {
"raw": "{{management_url}}/management/organizations/{{defaultOrganizationId}}/environments/{{defaultEnvironmentId}}/domains/",
diff --git a/postman/collections/graviteeio-am-self-account-management-collection-app-version.json b/postman/collections/graviteeio-am-self-account-management-collection-app-version.json
index 973866d87aa..b9a9cd2504a 100644
--- a/postman/collections/graviteeio-am-self-account-management-collection-app-version.json
+++ b/postman/collections/graviteeio-am-self-account-management-collection-app-version.json
@@ -106,7 +106,7 @@
],
"body": {
"mode": "raw",
- "raw": "{\n\t\"name\": \"self-account-management-test\", \n\t\"description\": \"test self-account-management impl\"\n}"
+ "raw": "{\n\t\"name\": \"self-account-management-test\", \n\t\"description\": \"test self-account-management impl\", \n\t\"dataPlaneId\": \"default\"\n}"
},
"url": {
"raw": "{{management_url}}/management/organizations/{{defaultOrganizationId}}/environments/{{defaultEnvironmentId}}/domains/",
diff --git a/postman/collections/graviteeio-am-uma2-app-version-collection.json b/postman/collections/graviteeio-am-uma2-app-version-collection.json
index 1ab763a4813..6819cdd2f9b 100644
--- a/postman/collections/graviteeio-am-uma2-app-version-collection.json
+++ b/postman/collections/graviteeio-am-uma2-app-version-collection.json
@@ -104,7 +104,7 @@
],
"body": {
"mode": "raw",
- "raw": "{\n\t\"name\": \"uma2_postman\", \n\t\"description\": \"test user-managed access specifications\"\n}"
+ "raw": "{\n\t\"name\": \"uma2_postman\", \n\t\"description\": \"test user-managed access specifications\", \n\t\"dataPlaneId\": \"default\"\n}"
},
"url": {
"raw": "{{management_url}}/management/organizations/{{defaultOrganizationId}}/environments/{{defaultEnvironmentId}}/domains/",
@@ -6793,4 +6793,4 @@
}
}
]
-}
\ No newline at end of file
+}
diff --git a/postman/collections/graviteeio-am-user-management-collection-app-version.json b/postman/collections/graviteeio-am-user-management-collection-app-version.json
index 8125920f8a7..66234f08a92 100644
--- a/postman/collections/graviteeio-am-user-management-collection-app-version.json
+++ b/postman/collections/graviteeio-am-user-management-collection-app-version.json
@@ -103,7 +103,7 @@
],
"body": {
"mode": "raw",
- "raw": "{\n\t\"name\": \"user-domain-app-version\", \n\t\"description\": \"test System for User Management specifications\"\n}"
+ "raw": "{\n\t\"name\": \"user-domain-app-version\", \n\t\"description\": \"test System for User Management specifications\", \n\t\"dataPlaneId\": \"default\"\n}"
},
"url": {
"raw": "{{management_url}}/management/organizations/{{defaultOrganizationId}}/environments/{{defaultEnvironmentId}}/domains/",
diff --git a/postman/collections/graviteeio-am-vhost-collection.json b/postman/collections/graviteeio-am-vhost-collection.json
index 6e84f3f0309..2bdebe81faa 100644
--- a/postman/collections/graviteeio-am-vhost-collection.json
+++ b/postman/collections/graviteeio-am-vhost-collection.json
@@ -102,7 +102,7 @@
],
"body": {
"mode": "raw",
- "raw": "{\n\t\"name\": \"vhost\", \n\t\"description\": \"test Virtual Hosts\"\n}"
+ "raw": "{\n\t\"name\": \"vhost\", \n\t\"description\": \"test Virtual Hosts\", \n\t\"dataPlaneId\": \"default\"\n}"
},
"url": {
"raw": "{{management_url}}/management/organizations/{{defaultOrganizationId}}/environments/{{defaultEnvironmentId}}/domains/",
@@ -255,7 +255,7 @@
],
"body": {
"mode": "raw",
- "raw": "{\n\t\"name\": \"otherVhost\", \n\t\"description\": \"test Virtual Hosts\"\n}"
+ "raw": "{\n\t\"name\": \"otherVhost\", \n\t\"description\": \"test Virtual Hosts\", \n\t\"dataPlaneId\": \"default\"\n}"
},
"url": {
"raw": "{{management_url}}/management/organizations/{{defaultOrganizationId}}/environments/{{defaultEnvironmentId}}/domains/",