Interface RpcBatch (2.3.0)
Stay organized with collections
Save and categorize content based on your preferences.
- 2.76.0 (latest)
- 2.74.0
- 2.73.0
- 2.72.0
- 2.71.0
- 2.70.0
- 2.68.0
- 2.66.0
- 2.65.0
- 2.62.0
- 2.61.0
- 2.60.0
- 2.58.0
- 2.57.0
- 2.56.0
- 2.55.0
- 2.54.0
- 2.53.0
- 2.52.0
- 2.51.0
- 2.50.0
- 2.49.0
- 2.47.0
- 2.46.0
- 2.45.0
- 2.44.0
- 2.43.0
- 2.42.0
- 2.41.0
- 2.40.0
- 2.39.0
- 2.38.0
- 2.37.0
- 2.35.0
- 2.34.0
- 2.33.0
- 2.32.0
- 2.31.0
- 2.30.0
- 2.29.0
- 2.28.0
- 2.27.0
- 2.26.0
- 2.25.0
- 2.22.0
- 2.21.0
- 2.20.0
- 2.19.0
- 2.18.0
- 2.17.0
- 2.16.0
- 2.15.0
- 2.14.0
- 2.13.0
- 2.12.0
- 2.11.0
- 2.10.0
- 2.9.0
- 2.7.0
- 2.6.0
- 2.5.0
- 2.4.0
- 2.3.0
- 2.2.0
- 2.1.8
- 2.0.9
publicinterface RpcBatchAn interface for the collection of batch operations.
Methods
addApplyChangeRequest(String zoneName, Change change, RpcBatch.Callback<Change> callback, Map<DnsRpc.Option,?> options)
publicabstractvoidaddApplyChangeRequest(StringzoneName,Changechange,RpcBatch.Callback<Change>callback,Map<DnsRpc.Option,?>options)Adds a call to "apply change request" to the batch with the provided callback and
options. The parameter change is the change request to be applied. The zone to
which the change request should be applied is identified by zoneName.
com.google.api.services.dns.model.ChangeaddCreateZone(ManagedZone zone, RpcBatch.Callback<ManagedZone> callback, Map<DnsRpc.Option,?> options)
publicabstractvoidaddCreateZone(ManagedZonezone,RpcBatch.Callback<ManagedZone>callback,Map<DnsRpc.Option,?>options)Adds a call to "create zone" to the batch with the provided callback and
options.
com.google.api.services.dns.model.ManagedZoneaddDeleteZone(String zoneName, RpcBatch.Callback<Void> callback)
publicabstractvoidaddDeleteZone(StringzoneName,RpcBatch.Callback<Void>callback)Adds a call to "delete zone" to the batch with the provided callback. The zone to be
deleted is identified by zoneName.
addGetChangeRequest(String zoneName, String changeRequestId, RpcBatch.Callback<Change> callback, Map<DnsRpc.Option,?> options)
publicabstractvoidaddGetChangeRequest(StringzoneName,StringchangeRequestId,RpcBatch.Callback<Change>callback,Map<DnsRpc.Option,?>options)Adds a call to "get change request" to the batch with the provided callback and
options. The change request to be retrieved is identified by changeRequestId. The zone
to which the change request was applied is identified by zoneName.
addGetProject(RpcBatch.Callback<Project> callback, Map<DnsRpc.Option,?> options)
publicabstractvoidaddGetProject(RpcBatch.Callback<Project>callback,Map<DnsRpc.Option,?>options)Adds a call to "get project" to the batch with the provided callback and
options.
addGetZone(String zoneName, RpcBatch.Callback<ManagedZone> callback, Map<DnsRpc.Option,?> options)
publicabstractvoidaddGetZone(StringzoneName,RpcBatch.Callback<ManagedZone>callback,Map<DnsRpc.Option,?>options)Adds a call to "get zone" to the batch with the provided callback and options.
The zone to be retrieved is identified by zoneName.
addListChangeRequests(String zoneName, RpcBatch.Callback<ChangesListResponse> callback, Map<DnsRpc.Option,?> options)
publicabstractvoidaddListChangeRequests(StringzoneName,RpcBatch.Callback<ChangesListResponse>callback,Map<DnsRpc.Option,?>options)Adds a call to "list change requests" to the batch with the provided callback and
options. The zone whose change requests are to be listed is identified by
zoneName.
addListRecordSets(String zoneName, RpcBatch.Callback<ResourceRecordSetsListResponse> callback, Map<DnsRpc.Option,?> options)
publicabstractvoidaddListRecordSets(StringzoneName,RpcBatch.Callback<ResourceRecordSetsListResponse>callback,Map<DnsRpc.Option,?>options)Adds a call to "list record sets" to the batch with the provided callback and
options. The zone whose record sets are to be listed is identified by zoneName.
addListZones(RpcBatch.Callback<ManagedZonesListResponse> callback, Map<DnsRpc.Option,?> options)
publicabstractvoidaddListZones(RpcBatch.Callback<ManagedZonesListResponse>callback,Map<DnsRpc.Option,?>options)Adds a call to "list zones" to the batch with the provided callback and
options.
submit()
publicabstractvoidsubmit()Submits a batch of requests for processing using a single RPC request to Cloud DNS.