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 @@ -20,12 +20,12 @@ public interface CollectionDatabasisDatabaseAccountUsage extends HasInner<UsageI
/**
* @return the currentValue value.
*/
Integer currentValue();
Long currentValue();

/**
* @return the limit value.
*/
Integer limit();
Long limit();

/**
* @return the name value.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ public interface DatabaseAccountUsage extends HasInner<UsageInner>, HasManager<D
/**
* @return the currentValue value.
*/
Integer currentValue();
Long currentValue();

/**
* @return the limit value.
*/
Integer limit();
Long limit();

/**
* @return the name value.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ public interface DatabasisDatabaseAccountUsage extends HasInner<UsageInner>, Has
/**
* @return the currentValue value.
*/
Integer currentValue();
Long currentValue();

/**
* @return the limit value.
*/
Integer limit();
Long limit();

/**
* @return the name value.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ public interface PartitionUsage extends HasInner<PartitionUsageInner>, HasManage
/**
* @return the currentValue value.
*/
Integer currentValue();
Long currentValue();

/**
* @return the limit value.
*/
Integer limit();
Long limit();

/**
* @return the name value.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@ public DocumentDBManager manager() {


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

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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@ public DocumentDBManager manager() {


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

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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@ public DocumentDBManager manager() {


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

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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ public DocumentDBManager manager() {
}

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

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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,13 @@ public class UsageInner {
* Maximum value for this metric.
*/
@JsonProperty(value = "limit", access = JsonProperty.Access.WRITE_ONLY)
private Integer limit;
private Long limit;

/**
* Current value for this metric.
*/
@JsonProperty(value = "currentValue", access = JsonProperty.Access.WRITE_ONLY)
private Integer currentValue;
private Long currentValue;

/**
* Get the unit of the metric. Possible values include: 'Count', 'Bytes', 'Seconds', 'Percent', 'CountPerSecond', 'BytesPerSecond', 'Milliseconds'.
Expand Down Expand Up @@ -91,7 +91,7 @@ public String quotaPeriod() {
*
* @return the limit value
*/
public Integer limit() {
public Long limit() {
return this.limit;
}

Expand All @@ -100,7 +100,7 @@ public Integer limit() {
*
* @return the currentValue value
*/
public Integer currentValue() {
public Long currentValue() {
return this.currentValue;
}

Expand Down