Skip to content

Commit 6cf9591

Browse files
author
SDKAuto
committed
CodeGen from PR 15093 in Azure/azure-rest-api-specs
Merge a0046925632f0e3ba8a8de144e4f4e0cdaeb8af2 into eaae6d973b6d3bf57fc3228ad8f8a59ddebaec08
1 parent b47af33 commit 6cf9591

File tree

4 files changed

+13
-9
lines changed

4 files changed

+13
-9
lines changed

sdk/security/azure-resourcemanager-security/CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
# Release History
22

3-
## 1.0.0-beta.2 (Unreleased)
3+
## 1.0.0-beta.1 (2021-07-28)
44

5+
- Azure Resource Manager Security client library for Java. This package contains Microsoft Azure SDK for Security Management SDK. API spec for Microsoft.Security (Azure Security Center) resource provider. Package tag package-composite-v3. For documentation on how to use this package, please see [Azure Management Libraries for Java](https://aka.ms/azsdk/java/mgmt).
56

67
## 1.0.0-beta.1 (2021-07-14)
78

sdk/security/azure-resourcemanager-security/README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Various documentation is available to help you get started
3232
<dependency>
3333
<groupId>com.azure.resourcemanager</groupId>
3434
<artifactId>azure-resourcemanager-security</artifactId>
35-
<version>1.0.0-beta.1</version>
35+
<version>1.0.0-beta.2</version>
3636
</dependency>
3737
```
3838
[//]: # ({x-version-update-end})
@@ -74,7 +74,6 @@ See [API design][design] for general introduction on design and key concepts on
7474

7575
## Examples
7676

77-
[Code snippets and samples](https://github.com/Azure/azure-sdk-for-java/blob/main/sdk/security/azure-resourcemanager-security/SAMPLE.md)
7877

7978

8079
## Troubleshooting

sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/implementation/SettingsClientImpl.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ private Mono<PagedResponse<SettingInner>> listSinglePageAsync() {
129129
new IllegalArgumentException(
130130
"Parameter this.client.getSubscriptionId() is required and cannot be null."));
131131
}
132-
final String apiVersion = "2021-06-01";
132+
final String apiVersion = "2021-07-01";
133133
final String accept = "application/json";
134134
return FluxUtil
135135
.withContext(
@@ -171,7 +171,7 @@ private Mono<PagedResponse<SettingInner>> listSinglePageAsync(Context context) {
171171
new IllegalArgumentException(
172172
"Parameter this.client.getSubscriptionId() is required and cannot be null."));
173173
}
174-
final String apiVersion = "2021-06-01";
174+
final String apiVersion = "2021-07-01";
175175
final String accept = "application/json";
176176
context = this.client.mergeContext(context);
177177
return service
@@ -266,7 +266,7 @@ private Mono<Response<SettingInner>> getWithResponseAsync(SettingsSettingName se
266266
if (settingName == null) {
267267
return Mono.error(new IllegalArgumentException("Parameter settingName is required and cannot be null."));
268268
}
269-
final String apiVersion = "2021-06-01";
269+
final String apiVersion = "2021-07-01";
270270
final String accept = "application/json";
271271
return FluxUtil
272272
.withContext(
@@ -309,7 +309,7 @@ private Mono<Response<SettingInner>> getWithResponseAsync(SettingsSettingName se
309309
if (settingName == null) {
310310
return Mono.error(new IllegalArgumentException("Parameter settingName is required and cannot be null."));
311311
}
312-
final String apiVersion = "2021-06-01";
312+
final String apiVersion = "2021-07-01";
313313
final String accept = "application/json";
314314
context = this.client.mergeContext(context);
315315
return service
@@ -400,7 +400,7 @@ private Mono<Response<SettingInner>> updateWithResponseAsync(
400400
} else {
401401
setting.validate();
402402
}
403-
final String apiVersion = "2021-06-01";
403+
final String apiVersion = "2021-07-01";
404404
final String accept = "application/json";
405405
return FluxUtil
406406
.withContext(
@@ -451,7 +451,7 @@ private Mono<Response<SettingInner>> updateWithResponseAsync(
451451
} else {
452452
setting.validate();
453453
}
454-
final String apiVersion = "2021-06-01";
454+
final String apiVersion = "2021-07-01";
455455
final String accept = "application/json";
456456
context = this.client.mergeContext(context);
457457
return service

sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/models/SettingsSettingName.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ public final class SettingsSettingName extends ExpandableStringEnum<SettingsSett
1616
/** Static value WDATP for SettingsSettingName. */
1717
public static final SettingsSettingName WDATP = fromString("WDATP");
1818

19+
/** Static value WDATP_EXCLUDE_LINUX_PUBLIC_PREVIEW for SettingsSettingName. */
20+
public static final SettingsSettingName WDATP_EXCLUDE_LINUX_PUBLIC_PREVIEW =
21+
fromString("WDATP_EXCLUDE_LINUX_PUBLIC_PREVIEW");
22+
1923
/** Static value Sentinel for SettingsSettingName. */
2024
public static final SettingsSettingName SENTINEL = fromString("Sentinel");
2125

0 commit comments

Comments
 (0)