Method: legacy.legacySearchDomainsRecentlyRegistered

Full name: projects.locations.instances.legacy.legacySearchDomainsRecentlyRegistered

Given a list of domain names and a time, returns only the domains that were recently registered relative to that time.

HTTP request

GET https://chronicle.googleapis.com/v1alpha/{instance}/legacy:legacySearchDomainsRecentlyRegistered

Path parameters

Parameters
instance

string

Required. Chronicle instance this request is sent to. Format: projects/{project}/locations/{location}/instances/{instance}

Query parameters

Parameters
domains[]

string

Required. The list of domains we want to run the check over. At least one domain is required.

endTime

string (Timestamp format)

Required. The end time we define "recently" from. A domain is considered newly registered if it was registered some T time period before this timestamp. T is defined by the frontend API server. Required

A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".

limit

integer

Optional. The maximum number of newly registered domains to return. If unset or set to 0, default limit will be used by backend.

Request body

The request body must be empty.

Response body

The response to a request to find out if domains were recently registered.

If successful, the response body contains data with the following structure:

JSON representation
{
  "recently_registered_domains": [
    {
      object (DomainAndTime)
    }
  ]
}
Fields
recently_registered_domains[]

object (DomainAndTime)

A list of domains that were recently registered, along with the time they were registered (in no particular order).

Authorization scopes

Requires the following OAuth scope:

  • https://www.googleapis.com/auth/cloud-platform

For more information, see the Authentication Overview.

IAM Permissions

Requires the following IAM permission on the instance resource:

  • chronicle.legacies.legacySearchDomainsRecentlyRegistered

For more information, see the IAM documentation.