ResourceRecordSets

For a list of methods for this resource, see the end of this page.

Resource representations

A unit of data that is returned by the DNS servers.

{
  "kind": "dns#resourceRecordSet",
  "name": string,
  "type": string,
  "ttl": integer,
  "rrdatas": [
    string
  ],
  "signatureRrdatas": [
    string
  ],
  "routingPolicy": {
    "kind": "dns#rRSetRoutingPolicy",
    "geoPolicy": {
      "kind": "dns#rRSetRoutingPolicyGeoPolicy",
      "items": [
        {
          "kind": "dns#rRSetRoutingPolicyGeoPolicyGeoPolicyItem",
          "location": string,
          "rrdatas": [
            string
          ],
          "signatureRrdatas": [
            string
          ],
          "healthCheckedTargets": {
            "internalLoadBalancers": [
              {
                "kind": "dns#rRSetRoutingPolicyLoadBalancerTarget",
                "loadBalancerType": string,
                "ipAddress": string,
                "port": string,
                "ipProtocol": string,
                "networkUrl": string,
                "project": string,
                "region": string
              }
            ]
          }
        }
      ],
      "enableFencing": boolean
    },
    "wrrPolicy": {
      "kind": "dns#rRSetRoutingPolicyWrrPolicy",
      "items": [
        {
          "kind": "dns#rRSetRoutingPolicyWrrPolicyWrrPolicyItem",
          "weight": double,
          "rrdatas": [
            string
          ],
          "signatureRrdatas": [
            string
          ],
          "healthCheckedTargets": {
            "internalLoadBalancers": [
              {
                "kind": "dns#rRSetRoutingPolicyLoadBalancerTarget",
                "loadBalancerType": string,
                "ipAddress": string,
                "port": string,
                "ipProtocol": string,
                "networkUrl": string,
                "project": string,
                "region": string
              }
            ]
          }
        }
      ]
    },
    "geo": {
      "kind": "dns#rRSetRoutingPolicyGeoPolicy",
      "items": [
        {
          "kind": "dns#rRSetRoutingPolicyGeoPolicyGeoPolicyItem",
          "location": string,
          "rrdatas": [
            string
          ],
          "signatureRrdatas": [
            string
          ],
          "healthCheckedTargets": {
            "internalLoadBalancers": [
              {
                "kind": "dns#rRSetRoutingPolicyLoadBalancerTarget",
                "loadBalancerType": string,
                "ipAddress": string,
                "port": string,
                "ipProtocol": string,
                "networkUrl": string,
                "project": string,
                "region": string
              }
            ]
          }
        }
      ],
      "enableFencing": boolean
    },
    "wrr": {
      "kind": "dns#rRSetRoutingPolicyWrrPolicy",
      "items": [
        {
          "kind": "dns#rRSetRoutingPolicyWrrPolicyWrrPolicyItem",
          "weight": double,
          "rrdatas": [
            string
          ],
          "signatureRrdatas": [
            string
          ],
          "healthCheckedTargets": {
            "internalLoadBalancers": [
              {
                "kind": "dns#rRSetRoutingPolicyLoadBalancerTarget",
                "loadBalancerType": string,
                "ipAddress": string,
                "port": string,
                "ipProtocol": string,
                "networkUrl": string,
                "project": string,
                "region": string
              }
            ]
          }
        }
      ]
    },
    "primaryBackup": {
      "kind": "dns#rRSetRoutingPolicyPrimaryBackupPolicy",
      "primaryTargets": {
        "internalLoadBalancers": [
          {
            "kind": "dns#rRSetRoutingPolicyLoadBalancerTarget",
            "loadBalancerType": string,
            "ipAddress": string,
            "port": string,
            "ipProtocol": string,
            "networkUrl": string,
            "project": string,
            "region": string
          }
        ]
      },
      "backupGeoTargets": {
        "kind": "dns#rRSetRoutingPolicyGeoPolicy",
        "items": [
          {
            "kind": "dns#rRSetRoutingPolicyGeoPolicyGeoPolicyItem",
            "location": string,
            "rrdatas": [
              string
            ],
            "signatureRrdatas": [
              string
            ],
            "healthCheckedTargets": {
              "internalLoadBalancers": [
                {
                  "kind": "dns#rRSetRoutingPolicyLoadBalancerTarget",
                  "loadBalancerType": string,
                  "ipAddress": string,
                  "port": string,
                  "ipProtocol": string,
                  "networkUrl": string,
                  "project": string,
                  "region": string
                }
              ]
            }
          }
        ],
        "enableFencing": boolean
      },
      "trickleTraffic": double
    }
  }
}
Property name Value Description Notes
kind string Identifies what kind of resource this is. Value: the fixed string "dns#resourceRecordSet".
name string For example, www.example.com.
routingPolicy nested object Configures dynamic query responses based on either the geo location of the querying user or a weighted round robin based routing policy. A valid ResourceRecordSet contains only rrdata (for static resolution) or a routing_policy (for dynamic resolution).
routingPolicy.geo nested object
routingPolicy.geo.enableFencing boolean Without fencing, if health check fails for all configured items in the current geo bucket, we failover to the next nearest geo bucket. With fencing, if health checking is enabled, as long as some targets in the current geo bucket are healthy, we return only the healthy targets. However, if all targets are unhealthy, we don't failover to the next nearest bucket; instead, we return all the items in the current bucket even when all targets are unhealthy.
routingPolicy.geo.items[] list The primary geo routing configuration. If there are multiple items with the same location, an error is returned instead.
routingPolicy.geo.items[].healthCheckedTargets nested object For A and AAAA types only. Endpoints to return in the query result only if they are healthy. These can be specified along with rrdata within this item.
routingPolicy.geo.items[].healthCheckedTargets.internalLoadBalancers[] list
routingPolicy.geo.items[].healthCheckedTargets.internalLoadBalancers[].ipAddress string The frontend IP address of the load balancer to health check.
routingPolicy.geo.items[].healthCheckedTargets.internalLoadBalancers[].ipProtocol string The protocol of the load balancer to health check.

Acceptable values are:
  • "tcp"
  • "udp"
  • "undefined"
routingPolicy.geo.items[].healthCheckedTargets.internalLoadBalancers[].kind string Identifies what kind of resource this is. Value: the fixed string "dns#rRSetRoutingPolicyLoadBalancerTarget".
routingPolicy.geo.items[].healthCheckedTargets.internalLoadBalancers[].loadBalancerType string The type of load balancer specified by this target. This value must match the configuration of the load balancer located at the LoadBalancerTarget's IP address, port, and region. Use the following:
  • regionalL4ilb: for a regional internal passthrough Network Load Balancer.
  • regionalL7ilb: for a regional internal Application Load Balancer.
  • globalL7ilb: for a global internal Application Load Balancer.


Acceptable values are:
  • "globalL7ilb"
  • "none"
  • "regionalL4ilb"
  • "regionalL7ilb"
routingPolicy.geo.items[].healthCheckedTargets.internalLoadBalancers[].networkUrl string The fully qualified URL of the network that the load balancer is attached to. This should be formatted like https://www.googleapis.com/compute/v1/projects/{project}/global/networks/{network}.
routingPolicy.geo.items[].healthCheckedTargets.internalLoadBalancers[].port string The configured port of the load balancer.
routingPolicy.geo.items[].healthCheckedTargets.internalLoadBalancers[].project string The project ID in which the load balancer is located.
routingPolicy.geo.items[].healthCheckedTargets.internalLoadBalancers[].region string The region in which the load balancer is located.
routingPolicy.geo.items[].kind string Identifies what kind of resource this is. Value: the fixed string "dns#rRSetRoutingPolicyGeoPolicyGeoPolicyItem".
routingPolicy.geo.items[].location string The geo-location granularity is a GCP region. This location string should correspond to a GCP region. e.g. "us-east1", "southamerica-east1", "asia-east1", etc.

routingPolicy.geo.items[].rrdatas[] list
routingPolicy.geo.items[].signatureRrdatas[] list DNSSEC generated signatures for all the rrdata within this item. If health checked targets are provided for DNSSEC enabled zones, there's a restriction of 1 IP address per item.

routingPolicy.geo.kind string Identifies what kind of resource this is. Value: the fixed string "dns#rRSetRoutingPolicyGeoPolicy".
routingPolicy.geoPolicy nested object TODO(ojasd): deprecate geo_policy and wrr_policy
routingPolicy.geoPolicy.enableFencing boolean Without fencing, if health check fails for all configured items in the current geo bucket, we failover to the next nearest geo bucket. With fencing, if health checking is enabled, as long as some targets in the current geo bucket are healthy, we return only the healthy targets. However, if all targets are unhealthy, we don't failover to the next nearest bucket; instead, we return all the items in the current bucket even when all targets are unhealthy.
routingPolicy.geoPolicy.items[] list The primary geo routing configuration. If there are multiple items with the same location, an error is returned instead.
routingPolicy.geoPolicy.items[].healthCheckedTargets nested object For A and AAAA types only. Endpoints to return in the query result only if they are healthy. These can be specified along with rrdata within this item.
routingPolicy.geoPolicy.items[].healthCheckedTargets.internalLoadBalancers[] list
routingPolicy.geoPolicy.items[].healthCheckedTargets.internalLoadBalancers[].ipAddress string The frontend IP address of the load balancer to health check.
routingPolicy.geoPolicy.items[].healthCheckedTargets.internalLoadBalancers[].ipProtocol string The protocol of the load balancer to health check.

Acceptable values are:
  • "tcp"
  • "udp"
  • "undefined"
routingPolicy.geoPolicy.items[].healthCheckedTargets.internalLoadBalancers[].kind string Identifies what kind of resource this is. Value: the fixed string "dns#rRSetRoutingPolicyLoadBalancerTarget".
routingPolicy.geoPolicy.items[].healthCheckedTargets.internalLoadBalancers[].loadBalancerType string The type of load balancer specified by this target. This value must match the configuration of the load balancer located at the LoadBalancerTarget's IP address, port, and region. Use the following:
  • regionalL4ilb: for a regional internal passthrough Network Load Balancer.
  • regionalL7ilb: for a regional internal Application Load Balancer.
  • globalL7ilb: for a global internal Application Load Balancer.


Acceptable values are:
  • "globalL7ilb"
  • "none"
  • "regionalL4ilb"
  • "regionalL7ilb"
routingPolicy.geoPolicy.items[].healthCheckedTargets.internalLoadBalancers[].networkUrl string The fully qualified URL of the network that the load balancer is attached to. This should be formatted like https://www.googleapis.com/compute/v1/projects/{project}/global/networks/{network}.
routingPolicy.geoPolicy.items[].healthCheckedTargets.internalLoadBalancers[].port string The configured port of the load balancer.
routingPolicy.geoPolicy.items[].healthCheckedTargets.internalLoadBalancers[].project string The project ID in which the load balancer is located.
routingPolicy.geoPolicy.items[].healthCheckedTargets.internalLoadBalancers[].region string The region in which the load balancer is located.
routingPolicy.geoPolicy.items[].kind string Identifies what kind of resource this is. Value: the fixed string "dns#rRSetRoutingPolicyGeoPolicyGeoPolicyItem".
routingPolicy.geoPolicy.items[].location string The geo-location granularity is a GCP region. This location string should correspond to a GCP region. e.g. "us-east1", "southamerica-east1", "asia-east1", etc.

routingPolicy.geoPolicy.items[].rrdatas[] list
routingPolicy.geoPolicy.items[].signatureRrdatas[] list DNSSEC generated signatures for all the rrdata within this item. If health checked targets are provided for DNSSEC enabled zones, there's a restriction of 1 IP address per item.

routingPolicy.geoPolicy.kind string Identifies what kind of resource this is. Value: the fixed string "dns#rRSetRoutingPolicyGeoPolicy".
routingPolicy.kind string Identifies what kind of resource this is. Value: the fixed string "dns#rRSetRoutingPolicy".
routingPolicy.primaryBackup nested object
routingPolicy.primaryBackup.backupGeoTargets nested object Backup targets provide a regional failover policy for the otherwise global primary targets. If serving state is set to BACKUP, this policy essentially becomes a geo routing policy.
routingPolicy.primaryBackup.backupGeoTargets.enableFencing boolean Without fencing, if health check fails for all configured items in the current geo bucket, we failover to the next nearest geo bucket. With fencing, if health checking is enabled, as long as some targets in the current geo bucket are healthy, we return only the healthy targets. However, if all targets are unhealthy, we don't failover to the next nearest bucket; instead, we return all the items in the current bucket even when all targets are unhealthy.
routingPolicy.primaryBackup.backupGeoTargets.items[] list The primary geo routing configuration. If there are multiple items with the same location, an error is returned instead.
routingPolicy.primaryBackup.backupGeoTargets.items[].healthCheckedTargets nested object For A and AAAA types only. Endpoints to return in the query result only if they are healthy. These can be specified along with rrdata within this item.
routingPolicy.primaryBackup.backupGeoTargets.items[].healthCheckedTargets.internalLoadBalancers[] list
routingPolicy.primaryBackup.backupGeoTargets.items[].healthCheckedTargets.internalLoadBalancers[].ipAddress string The frontend IP address of the load balancer to health check.
routingPolicy.primaryBackup.backupGeoTargets.items[].healthCheckedTargets.internalLoadBalancers[].ipProtocol string The protocol of the load balancer to health check.

Acceptable values are:
  • "tcp"
  • "udp"
  • "undefined"
routingPolicy.primaryBackup.backupGeoTargets.items[].healthCheckedTargets.internalLoadBalancers[].kind string Identifies what kind of resource this is. Value: the fixed string "dns#rRSetRoutingPolicyLoadBalancerTarget".
routingPolicy.primaryBackup.backupGeoTargets.items[].healthCheckedTargets.internalLoadBalancers[].loadBalancerType string The type of load balancer specified by this target. This value must match the configuration of the load balancer located at the LoadBalancerTarget's IP address, port, and region. Use the following:
  • regionalL4ilb: for a regional internal passthrough Network Load Balancer.
  • regionalL7ilb: for a regional internal Application Load Balancer.
  • globalL7ilb: for a global internal Application Load Balancer.


Acceptable values are:
  • "globalL7ilb"
  • "none"
  • "regionalL4ilb"
  • "regionalL7ilb"
routingPolicy.primaryBackup.backupGeoTargets.items[].healthCheckedTargets.internalLoadBalancers[].networkUrl string The fully qualified URL of the network that the load balancer is attached to. This should be formatted like https://www.googleapis.com/compute/v1/projects/{project}/global/networks/{network}.
routingPolicy.primaryBackup.backupGeoTargets.items[].healthCheckedTargets.internalLoadBalancers[].port string The configured port of the load balancer.
routingPolicy.primaryBackup.backupGeoTargets.items[].healthCheckedTargets.internalLoadBalancers[].project string The project ID in which the load balancer is located.
routingPolicy.primaryBackup.backupGeoTargets.items[].healthCheckedTargets.internalLoadBalancers[].region string The region in which the load balancer is located.
routingPolicy.primaryBackup.backupGeoTargets.items[].kind string Identifies what kind of resource this is. Value: the fixed string "dns#rRSetRoutingPolicyGeoPolicyGeoPolicyItem".
routingPolicy.primaryBackup.backupGeoTargets.items[].location string The geo-location granularity is a GCP region. This location string should correspond to a GCP region. e.g. "us-east1", "southamerica-east1", "asia-east1", etc.

routingPolicy.primaryBackup.backupGeoTargets.items[].rrdatas[] list
routingPolicy.primaryBackup.backupGeoTargets.items[].signatureRrdatas[] list DNSSEC generated signatures for all the rrdata within this item. If health checked targets are provided for DNSSEC enabled zones, there's a restriction of 1 IP address per item.

routingPolicy.primaryBackup.backupGeoTargets.kind string Identifies what kind of resource this is. Value: the fixed string "dns#rRSetRoutingPolicyGeoPolicy".
routingPolicy.primaryBackup.kind string Identifies what kind of resource this is. Value: the fixed string "dns#rRSetRoutingPolicyPrimaryBackupPolicy".
routingPolicy.primaryBackup.primaryTargets nested object Endpoints that are health checked before making the routing decision. Unhealthy endpoints are omitted from the results. If all endpoints are unhealthy, we serve a response based on the backup_geo_targets.
routingPolicy.primaryBackup.primaryTargets.internalLoadBalancers[] list
routingPolicy.primaryBackup.primaryTargets.internalLoadBalancers[].ipAddress string The frontend IP address of the load balancer to health check.
routingPolicy.primaryBackup.primaryTargets.internalLoadBalancers[].ipProtocol string The protocol of the load balancer to health check.

Acceptable values are:
  • "tcp"
  • "udp"
  • "undefined"
routingPolicy.primaryBackup.primaryTargets.internalLoadBalancers[].kind string Identifies what kind of resource this is. Value: the fixed string "dns#rRSetRoutingPolicyLoadBalancerTarget".
routingPolicy.primaryBackup.primaryTargets.internalLoadBalancers[].loadBalancerType string The type of load balancer specified by this target. This value must match the configuration of the load balancer located at the LoadBalancerTarget's IP address, port, and region. Use the following:
  • regionalL4ilb: for a regional internal passthrough Network Load Balancer.
  • regionalL7ilb: for a regional internal Application Load Balancer.
  • globalL7ilb: for a global internal Application Load Balancer.


Acceptable values are:
  • "globalL7ilb"
  • "none"
  • "regionalL4ilb"
  • "regionalL7ilb"
routingPolicy.primaryBackup.primaryTargets.internalLoadBalancers[].networkUrl string The fully qualified URL of the network that the load balancer is attached to. This should be formatted like https://www.googleapis.com/compute/v1/projects/{project}/global/networks/{network}.
routingPolicy.primaryBackup.primaryTargets.internalLoadBalancers[].port string The configured port of the load balancer.
routingPolicy.primaryBackup.primaryTargets.internalLoadBalancers[].project string The project ID in which the load balancer is located.
routingPolicy.primaryBackup.primaryTargets.internalLoadBalancers[].region string The region in which the load balancer is located.
routingPolicy.primaryBackup.trickleTraffic double When serving state is PRIMARY, this field provides the option of sending a small percentage of the traffic to the backup targets.
routingPolicy.wrr nested object
routingPolicy.wrr.items[] list
routingPolicy.wrr.items[].healthCheckedTargets nested object Endpoints that are health checked before making the routing decision. The unhealthy endpoints are omitted from the result. If all endpoints within a bucket are unhealthy, we choose a different bucket (sampled with respect to its weight) for responding. If DNSSEC is enabled for this zone, only one of rrdata or health_checked_targets can be set.
routingPolicy.wrr.items[].healthCheckedTargets.internalLoadBalancers[] list
routingPolicy.wrr.items[].healthCheckedTargets.internalLoadBalancers[].ipAddress string The frontend IP address of the load balancer to health check.
routingPolicy.wrr.items[].healthCheckedTargets.internalLoadBalancers[].ipProtocol string The protocol of the load balancer to health check.

Acceptable values are:
  • "tcp"
  • "udp"
  • "undefined"
routingPolicy.wrr.items[].healthCheckedTargets.internalLoadBalancers[].kind string Identifies what kind of resource this is. Value: the fixed string "dns#rRSetRoutingPolicyLoadBalancerTarget".
routingPolicy.wrr.items[].healthCheckedTargets.internalLoadBalancers[].loadBalancerType string The type of load balancer specified by this target. This value must match the configuration of the load balancer located at the LoadBalancerTarget's IP address, port, and region. Use the following:
  • regionalL4ilb: for a regional internal passthrough Network Load Balancer.
  • regionalL7ilb: for a regional internal Application Load Balancer.
  • globalL7ilb: for a global internal Application Load Balancer.


Acceptable values are:
  • "globalL7ilb"
  • "none"
  • "regionalL4ilb"
  • "regionalL7ilb"
routingPolicy.wrr.items[].healthCheckedTargets.internalLoadBalancers[].networkUrl string The fully qualified URL of the network that the load balancer is attached to. This should be formatted like https://www.googleapis.com/compute/v1/projects/{project}/global/networks/{network}.
routingPolicy.wrr.items[].healthCheckedTargets.internalLoadBalancers[].port string The configured port of the load balancer.
routingPolicy.wrr.items[].healthCheckedTargets.internalLoadBalancers[].project string The project ID in which the load balancer is located.
routingPolicy.wrr.items[].healthCheckedTargets.internalLoadBalancers[].region string The region in which the load balancer is located.
routingPolicy.wrr.items[].kind string Identifies what kind of resource this is. Value: the fixed string "dns#rRSetRoutingPolicyWrrPolicyWrrPolicyItem".
routingPolicy.wrr.items[].rrdatas[] list
routingPolicy.wrr.items[].signatureRrdatas[] list DNSSEC generated signatures for all the rrdata within this item. Note that if health checked targets are provided for DNSSEC enabled zones, there's a restriction of 1 IP address per item.

routingPolicy.wrr.items[].weight double The weight corresponding to this WrrPolicyItem object. When multiple WrrPolicyItem objects are configured, the probability of returning an WrrPolicyItem object's data is proportional to its weight relative to the sum of weights configured for all items. This weight must be non-negative.
routingPolicy.wrr.kind string Identifies what kind of resource this is. Value: the fixed string "dns#rRSetRoutingPolicyWrrPolicy".
routingPolicy.wrrPolicy nested object
routingPolicy.wrrPolicy.items[] list
routingPolicy.wrrPolicy.items[].healthCheckedTargets nested object Endpoints that are health checked before making the routing decision. The unhealthy endpoints are omitted from the result. If all endpoints within a bucket are unhealthy, we choose a different bucket (sampled with respect to its weight) for responding. If DNSSEC is enabled for this zone, only one of rrdata or health_checked_targets can be set.
routingPolicy.wrrPolicy.items[].healthCheckedTargets.internalLoadBalancers[] list
routingPolicy.wrrPolicy.items[].healthCheckedTargets.internalLoadBalancers[].ipAddress string The frontend IP address of the load balancer to health check.
routingPolicy.wrrPolicy.items[].healthCheckedTargets.internalLoadBalancers[].ipProtocol string The protocol of the load balancer to health check.

Acceptable values are:
  • "tcp"
  • "udp"
  • "undefined"
routingPolicy.wrrPolicy.items[].healthCheckedTargets.internalLoadBalancers[].kind string Identifies what kind of resource this is. Value: the fixed string "dns#rRSetRoutingPolicyLoadBalancerTarget".
routingPolicy.wrrPolicy.items[].healthCheckedTargets.internalLoadBalancers[].loadBalancerType string The type of load balancer specified by this target. This value must match the configuration of the load balancer located at the LoadBalancerTarget's IP address, port, and region. Use the following:
  • regionalL4ilb: for a regional internal passthrough Network Load Balancer.
  • regionalL7ilb: for a regional internal Application Load Balancer.
  • globalL7ilb: for a global internal Application Load Balancer.


Acceptable values are:
  • "globalL7ilb"
  • "none"
  • "regionalL4ilb"
  • "regionalL7ilb"
routingPolicy.wrrPolicy.items[].healthCheckedTargets.internalLoadBalancers[].networkUrl string The fully qualified URL of the network that the load balancer is attached to. This should be formatted like https://www.googleapis.com/compute/v1/projects/{project}/global/networks/{network}.
routingPolicy.wrrPolicy.items[].healthCheckedTargets.internalLoadBalancers[].port string The configured port of the load balancer.
routingPolicy.wrrPolicy.items[].healthCheckedTargets.internalLoadBalancers[].project string The project ID in which the load balancer is located.
routingPolicy.wrrPolicy.items[].healthCheckedTargets.internalLoadBalancers[].region string The region in which the load balancer is located.
routingPolicy.wrrPolicy.items[].kind string Identifies what kind of resource this is. Value: the fixed string "dns#rRSetRoutingPolicyWrrPolicyWrrPolicyItem".
routingPolicy.wrrPolicy.items[].rrdatas[] list
routingPolicy.wrrPolicy.items[].signatureRrdatas[] list DNSSEC generated signatures for all the rrdata within this item. Note that if health checked targets are provided for DNSSEC enabled zones, there's a restriction of 1 IP address per item.

routingPolicy.wrrPolicy.items[].weight double The weight corresponding to this WrrPolicyItem object. When multiple WrrPolicyItem objects are configured, the probability of returning an WrrPolicyItem object's data is proportional to its weight relative to the sum of weights configured for all items. This weight must be non-negative.
routingPolicy.wrrPolicy.kind string Identifies what kind of resource this is. Value: the fixed string "dns#rRSetRoutingPolicyWrrPolicy".
rrdatas[] list As defined in RFC 1035 (section 5) and RFC 1034 (section 3.6.1) -- see examples.
signatureRrdatas[] list As defined in RFC 4034 (section 3.2).
ttl integer Number of seconds that this ResourceRecordSet can be cached by resolvers.
type string The identifier of a supported record type. See the list of Supported DNS record types.

Methods

create
Creates a new ResourceRecordSet.
delete
Deletes a previously created ResourceRecordSet.
get
Fetches the representation of an existing ResourceRecordSet.
list
Enumerates ResourceRecordSets that you have created but not yet deleted.
patch
Applies a partial update to an existing ResourceRecordSet.