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 web/resource-manager] [DO NOT MERGE] Add API for adding external storage account configurations to a web app #2243

Merged
merged 2 commits into from
Aug 3, 2018
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
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public class AzureStorageInfoValue {
* State of the storage account. Possible values include: 'Ok',
* 'InvalidCredentials', 'InvalidShare'.
*/
@JsonProperty(value = "state")
@JsonProperty(value = "state", access = JsonProperty.Access.WRITE_ONLY)
private AzureStorageState state;

/**
Expand Down Expand Up @@ -160,15 +160,4 @@ public AzureStorageState state() {
return this.state;
}

/**
* Set state of the storage account. Possible values include: 'Ok', 'InvalidCredentials', 'InvalidShare'.
*
* @param state the state value to set
* @return the AzureStorageInfoValue object itself.
*/
public AzureStorageInfoValue withState(AzureStorageState state) {
this.state = state;
return this;
}

}
Loading