MapDetailResponse

Prev Next

Available in VPC

These are Geo/CIDR map details.

Syntax

The syntax is as follows.

public class MapDetailResponse { 
    private Long id;
    private String name;
    private MapType mapType;
    private Long createdDate;
    private Long modifiedDate;
    private Boolean defaultYn;
    private List<DetailedMap> detailedMapList;
}


public class DetailedMap { 
    private Long id;
	private String name;
	private String content;
    private List<GeoIdMapping> geoIdMappings;
}

public class GeoIdMapping { 
    private String geoName;
    private GeoType geoType;
}

Field

The following describes the fields.

MapDetailResponse

Field Type Required Description
id Long - Geo/CIDR Map ID
name String - Geo/CIDR map name
mapType Enum - Map type
  • GEO | CIDR
createdDate Long - Creation date and time (UTC 0)
modifiedDate Long - Modification date and time (UTC 0)
defaultYn Boolean - Whether the map information is provided by NAVER Cloud Platform
  • true | false
detailedMapList List<DetailedMap> - Geo/CIDR map details

DetailedMap

Field Type Required Description
id Long - Geo/CIDR map details ID
name String - Geo/CIDR map details name
content String - Geo/CIDR map details
geoIdMappings List<GeoIdMapping> - Geo information

GeoIdMapping

Field Type Required Description
geoName String - Region name
geoType Enum - Region type
  • CONTINENT | NATION | CITY