Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions sdk/easm/azure-analytics-defender-easm/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@

### Breaking Changes

- Removed `subscriptionId`, `resourceGroupName`, `workspaceName` API from `EasmClientBuilder` client builder.
Please set all of these values into `endpoint` API, e.g. `builder.endpoint("https://<host>/subscriptions/<subscriptionId>/resourceGroups/<resourceGroupName>/workspaces/<workspaceName>/")`.
- Removed Jackson annotations from models and removed custom serializer for raw JSON fields.

### Bugs Fixed

### Other Changes
Expand Down
6 changes: 0 additions & 6 deletions sdk/easm/azure-analytics-defender-easm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,16 +57,10 @@ Custom discoveries are organized into Discovery Groups. They are independent see
## Examples

```java readme-sample-createDefenderEasmClient
String subscriptionId = Configuration.getGlobalConfiguration().get("SUBSCRIPTION_ID");
String workspaceName = Configuration.getGlobalConfiguration().get("WORKSPACENAME");
String resourceGroupName = Configuration.getGlobalConfiguration().get("RESOURCEGROUPNAME");
String endpoint = Configuration.getGlobalConfiguration().get("ENDPOINT");

EasmClient easmClient = new EasmClientBuilder()
.endpoint(endpoint)
.subscriptionId(subscriptionId)
.workspaceName(workspaceName)
.resourceGroupName(resourceGroupName)
.credential(new DefaultAzureCredentialBuilder().build())
.buildClient();
```
Expand Down
2 changes: 1 addition & 1 deletion sdk/easm/azure-analytics-defender-easm/assets.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
"AssetsRepo" : "Azure/azure-sdk-assets",
"AssetsRepoPrefixPath" : "java",
"TagPrefix" : "java/easm/azure-analytics-defender-easm",
"Tag" : "java/easm/azure-analytics-defender-easm_89ef9d7fb3"
"Tag" : "java/easm/azure-analytics-defender-easm_fb73beaf08"
}
1 change: 1 addition & 0 deletions sdk/easm/azure-analytics-defender-easm/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@
</developers>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jacoco.min.linecoverage>0.30</jacoco.min.linecoverage>
</properties>
<dependencies>
<dependency>
Expand Down
Loading