diff --git a/sdk/nginx/azure-resourcemanager-nginx/CHANGELOG.md b/sdk/nginx/azure-resourcemanager-nginx/CHANGELOG.md
index 40adccc9831d..b9137e87f15d 100644
--- a/sdk/nginx/azure-resourcemanager-nginx/CHANGELOG.md
+++ b/sdk/nginx/azure-resourcemanager-nginx/CHANGELOG.md
@@ -1,6 +1,8 @@
# Release History
-## 1.0.0-beta.2 (Unreleased)
+## 1.0.0-beta.1 (2022-08-31)
+
+- Azure Resource Manager Nginx client library for Java. This package contains Microsoft Azure SDK for Nginx Management SDK. Package tag package-2022-08-01. For documentation on how to use this package, please see [Azure Management Libraries for Java](https://aka.ms/azsdk/java/mgmt).
### Features Added
diff --git a/sdk/nginx/azure-resourcemanager-nginx/README.md b/sdk/nginx/azure-resourcemanager-nginx/README.md
index d81996b60929..70657cb2732c 100644
--- a/sdk/nginx/azure-resourcemanager-nginx/README.md
+++ b/sdk/nginx/azure-resourcemanager-nginx/README.md
@@ -32,7 +32,7 @@ Various documentation is available to help you get started
com.azure.resourcemanager
azure-resourcemanager-nginx
- 1.0.0-beta.1
+ 1.0.0-beta.2
```
[//]: # ({x-version-update-end})
diff --git a/sdk/nginx/azure-resourcemanager-nginx/src/main/java/com/azure/resourcemanager/nginx/models/NginxConfigurationProperties.java b/sdk/nginx/azure-resourcemanager-nginx/src/main/java/com/azure/resourcemanager/nginx/models/NginxConfigurationProperties.java
index 07dd62174f0a..b6863aaebef0 100644
--- a/sdk/nginx/azure-resourcemanager-nginx/src/main/java/com/azure/resourcemanager/nginx/models/NginxConfigurationProperties.java
+++ b/sdk/nginx/azure-resourcemanager-nginx/src/main/java/com/azure/resourcemanager/nginx/models/NginxConfigurationProperties.java
@@ -23,6 +23,12 @@ public final class NginxConfigurationProperties {
@JsonProperty(value = "files")
private List files;
+ /*
+ * The protectedFiles property.
+ */
+ @JsonProperty(value = "protectedFiles")
+ private List protectedFiles;
+
/*
* The package property.
*/
@@ -75,6 +81,26 @@ public NginxConfigurationProperties withFiles(List files
return this;
}
+ /**
+ * Get the protectedFiles property: The protectedFiles property.
+ *
+ * @return the protectedFiles value.
+ */
+ public List protectedFiles() {
+ return this.protectedFiles;
+ }
+
+ /**
+ * Set the protectedFiles property: The protectedFiles property.
+ *
+ * @param protectedFiles the protectedFiles value to set.
+ * @return the NginxConfigurationProperties object itself.
+ */
+ public NginxConfigurationProperties withProtectedFiles(List protectedFiles) {
+ this.protectedFiles = protectedFiles;
+ return this;
+ }
+
/**
* Get the packageProperty property: The package property.
*
@@ -124,6 +150,9 @@ public void validate() {
if (files() != null) {
files().forEach(e -> e.validate());
}
+ if (protectedFiles() != null) {
+ protectedFiles().forEach(e -> e.validate());
+ }
if (packageProperty() != null) {
packageProperty().validate();
}