You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -16,52 +16,116 @@ Seismic DDMS provides the capability to operate on seismic data in the Azure Dat
16
16
In this tutorial, you will learn how to:
17
17
18
18
> [!div class="checklist"]
19
-
> * Register data partition to seismic
20
-
> * Utilize seismic DDMS Api's to store and retrieve seismic data
19
+
> * Register a data partition for seismic data
20
+
> * Utilize Seismic DDMS APIs to store and retrieve seismic data
21
21
22
22
## Prerequisites
23
23
24
-
### Azure Data Manager for Energy instance details
24
+
- An Azure subscription
25
+
- An instance of [Azure Data Manager for Energy](quickstart-create-microsoft-energy-data-services-instance.md) created in your Azure subscription.
25
26
26
-
* Once the [Azure Data Manager for Energy instance](./quickstart-create-microsoft-energy-data-services-instance.md) is created, note down the following details:
| TENANT_ID | Directory (tenant) ID | 72f988bf-86f1-41af-91ab-2d7cd011db47 |
33
-
| SCOPE | Application (client) ID | 3dbbb..... |
34
-
| base_uri | URI | instancename.energy.azure.com |
35
-
| data-partition-id | Data Partition(s) | instancename-datapartitionid |
27
+
## Get your Azure Data Manager for Energy instance details
36
28
37
-
### Postman setup
29
+
The first step is to get the following information from your [Azure Data Manager for Energy instance](quickstart-create-microsoft-energy-data-services-instance.md) in the [Azure portal](https://portal.azure.com/?microsoft_azure_marketplace_ItemHideKey=Microsoft_Azure_OpenEnergyPlatformHidden):
38
30
39
-
1. Download and install [Postman](https://www.postman.com/) desktop app
| data-partition-id | Data Partition(s) |`<data-partition-name>`|
38
+
39
+
## Set up Postman
40
+
41
+
1. Download and install the [Postman](https://www.postman.com/downloads/) desktop app.
40
42
2. Import the following files into Postman:
41
-
* To import the Postman collection and environment variables, follow the steps outlined in [Importing data into Postman](https://learning.postman.com/docs/getting-started/importing-and-exporting-data/#importing-data-into-postman)
42
-
*[Smoke test Postman collection](https://community.opengroup.org/osdu/platform/deployment-and-operations/infra-azure-provisioning/-/raw/master/source/ddms-smoke-tests/Azure%20DDMS%20OSDU%20Smoke%20Tests.postman_collection.json)
43
-
*[Smoke Test Environment](https://community.opengroup.org/osdu/platform/deployment-and-operations/infra-azure-provisioning/-/raw/master/source/ddms-smoke-tests/%5BShip%5D%20osdu-glab.msft-osdu-test.org.postman_environment.json)
44
-
45
-
3. Update the **CURRENT_VALUE** of the Postman Environment with the information obtained in Azure Data Manager for Energy instance details
46
-
47
-
## Register data partition to seismic
48
-
49
-
* Script to register
50
-
```sh
51
-
curl --location --request POST '[url]/seistore-svc/api/v3/tenant/{{datapartition}}' \
:::image type="content" source="media/tutorial-ddms/postman-import-button.png" alt-text="Screenshot that shows the import button in Postman." lightbox="media/tutorial-ddms/postman-import-button.png":::
52
+
53
+
1. Paste the URL of each file into the search box.
54
+
55
+
:::image type="content" source="media/tutorial-ddms/postman-import-search.png" alt-text="Screenshot that shows importing collection and environment files in Postman via URL." lightbox="media/tutorial-ddms/postman-import-search.png":::
56
+
57
+
3. Update the **CURRENT_VALUE** of the Postman environment with the information obtained in Azure Data Manager for Energy instance details
58
+
59
+
## Utilize Seismic DDMS APIs to store and retrieve seismic data
60
+
61
+
### Create a legal tag
62
+
63
+
Create a legal tag that's automatically added to your Seismic DDMS environment for data compliance.
64
+
65
+
API: **Setup** > **Create Legal Tag for SDDMS**
66
+
67
+
Method: POST
68
+
69
+
:::image type="content" source="media/tutorial-seismic-ddms/postman-api-create-legal-tag.png" alt-text="Screenshot that shows the API that creates a legal tag." lightbox="media/tutorial-seismic-ddms/postman-api-create-legal-tag.png":::
70
+
71
+
For more information, see [Manage legal tags](how-to-manage-legal-tags.md).
72
+
73
+
### Service Verification
74
+
75
+
Run basic service connection and status tests in your Azure Data Manager for Energy instance.
76
+
77
+
API: **Service Verification** > **Check Access**
78
+
79
+
Method: GET
80
+
81
+
:::image type="content" source="media/tutorial-seismic-ddms/postman-api-check-service-status.png" alt-text="Screenshot that shows the API that checks the service's status." lightbox="media/tutorial-seismic-ddms/postman-api-check-service-status.png":::
82
+
83
+
### Tenant
84
+
85
+
Create a tenant in your Azure Data Manager for Energy instance.
86
+
87
+
**Note:** You must register a data partition as a tenant before using it with Seismic DDMS.
88
+
89
+
API: **Tenant** > **Register a Tenant**
90
+
91
+
Method: POST
92
+
93
+
:::image type="content" source="media/tutorial-seismic-ddms/postman-api-register-tenant.png" alt-text="Screenshot that shows the API that registers a tenant." lightbox="media/tutorial-seismic-ddms/postman-api-register-tenant.png":::
94
+
95
+
### Subproject
96
+
97
+
Create a subproject in your Azure Data Manager for Energy instance.
98
+
99
+
API: **Subproject** > **Create Subproject**
100
+
101
+
Method: POST
102
+
103
+
:::image type="content" source="media/tutorial-seismic-ddms/postman-api-create-subproject.png" alt-text="Screenshot that shows the API that creates a subproject." lightbox="media/tutorial-seismic-ddms/postman-api-create-subproject.png":::
104
+
105
+
### Dataset
106
+
107
+
Register a dataset in your Azure Data Manager for Energy instance.
108
+
109
+
API: **Dataset** > **Register a Dataset**
110
+
111
+
Method: POST
112
+
113
+
:::image type="content" source="media/tutorial-seismic-ddms/postman-api-create-dataset.png" alt-text="Screenshot that shows the API that creates a dataset." lightbox="media/tutorial-seismic-ddms/postman-api-create-dataset.png":::
114
+
115
+
### Applications
116
+
117
+
Register applications in your Azure Data Manager for Energy instance.
118
+
119
+
API: **Application** > **Register a New Application**
120
+
121
+
Method: POST
122
+
123
+
:::image type="content" source="media/tutorial-seismic-ddms/postman-api-register-application.png" alt-text="Screenshot that shows the API that registers an application." lightbox="media/tutorial-seismic-ddms/postman-api-register-application.png":::
63
124
64
125
## Next steps
126
+
127
+
As an alternative user experience to Postman, you can use SDUTIL to directly interact with the seismic store via the command line Python utility tool. Please follow this tutorial to get started.
128
+
65
129
<!-- Add a context sentence for the following links -->
0 commit comments