ResourceRecordSets: list

Enumerates ResourceRecordSets that you have created but not yet deleted.

Request

HTTP request

GET https://dns.googleapis.com/dns/v1beta2/projects/project/managedZones/managedZone/rrsets

Parameters

Parameter name Value Description
Path parameters
managedZone string Identifies the managed zone addressed by this request. Can be the managed zone name or ID.
project string Identifies the project addressed by this request.
Optional query parameters
maxResults integer Optional. Maximum number of results to be returned. If unspecified, the server decides how many results to return.
name string Restricts the list to return only records with this fully qualified domain name.
pageToken string Optional. A tag returned by a previous list request that was truncated. Use this parameter to continue a previous list request.
type string Restricts the list to return only records of this type. If present, the "name" parameter must also be present.

Authorization

This request requires authorization with at least one of the following scopes:

Scope
https://www.googleapis.com/auth/ndev.clouddns.readonly
https://www.googleapis.com/auth/ndev.clouddns.readwrite
https://www.googleapis.com/auth/cloud-platform
https://www.googleapis.com/auth/cloud-platform.read-only

Request body

Do not supply a request body with this method.

Response

If successful, this method returns a response body with the following structure:

{
  "kind": "dns#resourceRecordSetsListResponse",
  "header": {
    "operationId": string
  },
  "rrsets": [
    resourceRecordSets Resource
  ],
  "nextPageToken": string
}
Property name Value Description Notes
kind string Type of resource.
rrsets[] list The resource record set resources.
nextPageToken string The presence of this field indicates that there exist more results following your last page of results in pagination order. To fetch them, make another list request using this value as your pagination token.

This lets you retrieve the complete contents of even larger collections, one page at a time. However, if the collection changes between paginated list requests, the set of elements returned is an inconsistent view of the collection. You cannot retrieve a consistent snapshot of a collection larger than the maximum page size.
header.operationId string For mutating operation requests that completed successfully. This is the client_operation_id if the client specified it, otherwise it is generated by the server (output only).