Skip to content

Commit

Permalink
Update docs to not include profileDataset override till it is support…
Browse files Browse the repository at this point in the history
…ed in the datastream configuration UI (#449)
  • Loading branch information
addb authored Nov 2, 2023
1 parent 39337a7 commit 03be637
Showing 1 changed file with 1 addition and 12 deletions.
13 changes: 1 addition & 12 deletions src/pages/edge/edge-network/tabs/api-reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -275,11 +275,7 @@ Map<String, Object> datasets = new HashMap<>();
Map<String, Object> eventDataset = new HashMap<>();
eventDataset.put("datasetId", "SampleEventDatasetIdOverride");

Map<String, Object> profileDataset = new HashMap<>();
profileDataset.put("datasetId", "SampleProfileDatasetIdOverride");

datasets.put("event", eventDataset);
datasets.put("profile", profileDataset);

experiencePlatform.put("datasets", datasets);
configOverrides.put("com_adobe_experience_platform", experiencePlatform);
Expand Down Expand Up @@ -374,8 +370,7 @@ xdmData["sample"] = "data"
val configOverrides = mapOf(
"com_adobe_experience_platform" to mapOf(
"datasets" to mapOf(
"event" to mapOf("datasetId" to "SampleEventDatasetIdOverride"),
"profile" to mapOf("datasetId" to "SampleProfileDatasetIdOverride")
"event" to mapOf("datasetId" to "SampleEventDatasetIdOverride")
)
),
"com_adobe_analytics" to mapOf(
Expand Down Expand Up @@ -458,9 +453,6 @@ let configOverrides: [String: Any] = [
"datasets": [
"event": [
"datasetId": "SampleEventDatasetIdOverride"
],
"profile": [
"datasetId": "SampleProfileDatasetIdOverride"
]
]
],
Expand Down Expand Up @@ -537,9 +529,6 @@ NSDictionary *configOverrides = @{ @"com_adobe_experience_platform" : @{
@"datasets" : @{
@"event" : @{
@"datasetId": @"SampleEventDatasetIdOverride"
},
@"profile" : @{
@"datasetId": @"SampleProfileDatasetIdOverride"
}
}
},
Expand Down

0 comments on commit 03be637

Please sign in to comment.