Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[AutoPR azure-resourcemanager-nginx] Maulik/mfe stable changes #1702

Closed
wants to merge 1 commit into from
Closed
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: 3 additions & 1 deletion sdk/nginx/azure-resourcemanager-nginx/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
2 changes: 1 addition & 1 deletion sdk/nginx/azure-resourcemanager-nginx/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Various documentation is available to help you get started
<dependency>
<groupId>com.azure.resourcemanager</groupId>
<artifactId>azure-resourcemanager-nginx</artifactId>
<version>1.0.0-beta.1</version>
<version>1.0.0-beta.2</version>
</dependency>
```
[//]: # ({x-version-update-end})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,12 @@ public final class NginxConfigurationProperties {
@JsonProperty(value = "files")
private List<NginxConfigurationFile> files;

/*
* The protectedFiles property.
*/
@JsonProperty(value = "protectedFiles")
private List<NginxConfigurationFile> protectedFiles;

/*
* The package property.
*/
Expand Down Expand Up @@ -75,6 +81,26 @@ public NginxConfigurationProperties withFiles(List<NginxConfigurationFile> files
return this;
}

/**
* Get the protectedFiles property: The protectedFiles property.
*
* @return the protectedFiles value.
*/
public List<NginxConfigurationFile> 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<NginxConfigurationFile> protectedFiles) {
this.protectedFiles = protectedFiles;
return this;
}

/**
* Get the packageProperty property: The package property.
*
Expand Down Expand Up @@ -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();
}
Expand Down