Skip to content

Commit

Permalink
Generated from 900b6c8ae4554a88ce344bd2fd77e81b39426d75 (#2595)
Browse files Browse the repository at this point in the history
Add GeoRegion property to DeletedSite model
  • Loading branch information
AutorestCI authored Nov 13, 2018
1 parent 78a25a0 commit 1117638
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,11 @@ public interface DeletedSite extends HasInner<DeletedSiteInner>, HasManager<Cert
*/
String deletedTimestamp();

/**
* @return the geoRegionName value.
*/
String geoRegionName();

/**
* @return the id value.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,11 @@ public String deletedTimestamp() {
return this.inner().deletedTimestamp();
}

@Override
public String geoRegionName() {
return this.inner().geoRegionName();
}

@Override
public String id() {
return this.inner().id();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,12 @@ public class DeletedSiteInner extends ProxyOnlyResource {
@JsonProperty(value = "properties.kind", access = JsonProperty.Access.WRITE_ONLY)
private String deletedSiteKind;

/**
* Geo Region of the deleted site.
*/
@JsonProperty(value = "properties.geoRegionName", access = JsonProperty.Access.WRITE_ONLY)
private String geoRegionName;

/**
* Get numeric id for the deleted site.
*
Expand Down Expand Up @@ -122,4 +128,13 @@ public String deletedSiteKind() {
return this.deletedSiteKind;
}

/**
* Get geo Region of the deleted site.
*
* @return the geoRegionName value
*/
public String geoRegionName() {
return this.geoRegionName;
}

}

0 comments on commit 1117638

Please sign in to comment.