Package com.google.cloud.dns
Class ProjectInfo.Quota
- java.lang.Object
-
- com.google.cloud.dns.ProjectInfo.Quota
-
- All Implemented Interfaces:
Serializable
- Enclosing class:
- ProjectInfo
public static class ProjectInfo.Quota extends Object implements Serializable
This class represents quotas assigned to theProjectInfo
.- See Also:
- Google Cloud DNS documentation, Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object other)
int
getResourceRecordsPerRrset()
Returns the maximum allowed number of records perRecordSet
.int
getRrsetAdditionsPerChange()
Returns the maximum allowed number ofRecordSet
s to add perChangeRequest
.int
getRrsetDeletionsPerChange()
Returns the maximum allowed number ofRecordSet
s to delete perChangeRequest
.int
getRrsetsPerZone()
int
getTotalRrdataSizePerChange()
Returns the maximum allowed size for total records in one ChangesRequest in bytes.int
getZones()
Returns the maximum allowed number of zones in the project.int
hashCode()
String
toString()
-
-
-
Method Detail
-
getZones
public int getZones()
Returns the maximum allowed number of zones in the project.
-
getResourceRecordsPerRrset
public int getResourceRecordsPerRrset()
Returns the maximum allowed number of records perRecordSet
.
-
getRrsetAdditionsPerChange
public int getRrsetAdditionsPerChange()
Returns the maximum allowed number ofRecordSet
s to add perChangeRequest
.
-
getRrsetDeletionsPerChange
public int getRrsetDeletionsPerChange()
Returns the maximum allowed number ofRecordSet
s to delete perChangeRequest
.
-
getRrsetsPerZone
public int getRrsetsPerZone()
-
getTotalRrdataSizePerChange
public int getTotalRrdataSizePerChange()
Returns the maximum allowed size for total records in one ChangesRequest in bytes.
-
-