Skip to content
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 @@ -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;
}

}