Skip to content

Commit

Permalink
[AutoPR web/resource-manager] [DO NOT MERGE] Add API for adding exter…
Browse files Browse the repository at this point in the history
…nal storage account configurations to a web app (#2243)

* Generated from b3ca48ca58ec98acb66b2c6760819c0b609cd5d1

Make state of AzureStorageInfoValue readonly

* Generated from b3ca48ca58ec98acb66b2c6760819c0b609cd5d1

Make state of AzureStorageInfoValue readonly
  • Loading branch information
AutorestCI authored Aug 3, 2018
1 parent a3b04d3 commit b150393
Showing 1 changed file with 1 addition and 12 deletions.
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;
}

}

0 comments on commit b150393

Please sign in to comment.