Skip to content
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
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ public interface FileShare extends HasInner<FileShareInner>, Indexable, Updatabl
/**
* @return the shareUsageBytes value.
*/
Integer shareUsageBytes();
Long shareUsageBytes();

/**
* @return the type value.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ public interface FileShareItem extends HasInner<FileShareItemInner>, HasManager<
/**
* @return the shareUsageBytes value.
*/
Integer shareUsageBytes();
Long shareUsageBytes();

/**
* @return the type value.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ public Integer shareQuota() {
}

@Override
public Integer shareUsageBytes() {
public Long shareUsageBytes() {
return this.inner().shareUsageBytes();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ public class FileShareInner extends AzureEntityResource {
* value may not include all recently created or recently resized files.
*/
@JsonProperty(value = "properties.shareUsageBytes", access = JsonProperty.Access.WRITE_ONLY)
private Integer shareUsageBytes;
private Long shareUsageBytes;

/**
* Get returns the date and time the share was last modified.
Expand Down Expand Up @@ -277,7 +277,7 @@ public String accessTierStatus() {
*
* @return the shareUsageBytes value
*/
public Integer shareUsageBytes() {
public Long shareUsageBytes() {
return this.shareUsageBytes;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ public Integer shareQuota() {
}

@Override
public Integer shareUsageBytes() {
public Long shareUsageBytes() {
return this.inner().shareUsageBytes();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ public class FileShareItemInner extends AzureEntityResource {
* value may not include all recently created or recently resized files.
*/
@JsonProperty(value = "properties.shareUsageBytes", access = JsonProperty.Access.WRITE_ONLY)
private Integer shareUsageBytes;
private Long shareUsageBytes;

/**
* Get returns the date and time the share was last modified.
Expand Down Expand Up @@ -276,7 +276,7 @@ public String accessTierStatus() {
*
* @return the shareUsageBytes value
*/
public Integer shareUsageBytes() {
public Long shareUsageBytes() {
return this.shareUsageBytes;
}

Expand Down