GetAddressMapResult

data class GetAddressMapResult(val accountId: String, val addressMapId: String? = null, val canDelete: Boolean, val canModifyIps: Boolean, val createdAt: String, val defaultSni: String, val description: String, val enabled: Boolean, val id: String, val ips: List<GetAddressMapIp>, val memberships: List<GetAddressMapMembership>, val modifiedAt: String)

A collection of values returned by getAddressMap.

Constructors

Link copied to clipboard
constructor(accountId: String, addressMapId: String? = null, canDelete: Boolean, canModifyIps: Boolean, createdAt: String, defaultSni: String, description: String, enabled: Boolean, id: String, ips: List<GetAddressMapIp>, memberships: List<GetAddressMapMembership>, modifiedAt: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Identifier of a Cloudflare account.

Link copied to clipboard
val addressMapId: String? = null

Identifier of an Address Map.

Link copied to clipboard

If set to false, then the Address Map cannot be deleted via API. This is true for Cloudflare-managed maps.

Link copied to clipboard

If set to false, then the IPs on the Address Map cannot be modified via the API. This is true for Cloudflare-managed maps.

Link copied to clipboard
Link copied to clipboard

If you have legacy TLS clients which do not send the TLS server name indicator, then you can specify one default SNI on the map. If Cloudflare receives a TLS handshake from a client without an SNI, it will respond with the default SNI on those IPs. The default SNI can be any valid zone or subdomain owned by the account.

Link copied to clipboard

An optional description field which may be used to describe the types of IPs or zones on the map.

Link copied to clipboard

Whether the Address Map is enabled or not. Cloudflare's DNS will not respond with IP addresses on an Address Map until the map is enabled.

Link copied to clipboard
val id: String

Identifier of an Address Map.

Link copied to clipboard

The set of IPs on the Address Map.

Link copied to clipboard

Zones and Accounts which will be assigned IPs on this Address Map. A zone membership will take priority over an account membership.

Link copied to clipboard