Available in VPC
These are domain (profile) details.
Syntax
The syntax is as follows.
public class ProfileRespnse {
private Long sid
private String name;
private Long policyId;
private String policyName;
private Boolean claYn;
private Long ttl;
private Boolean delYn;
private LoadBalancerType lbType;
private Long createdDate;
private Boolean monitoringYn;
private GtmStatus status;
private List<ResourceGroup> resourceGroups;
}
public class ResourceGroup {
private Long sid;
private Long geoMapDetailId;
private String geoMapDetailName;
private Long weighted;
private List<Resource> active;
private List<Resource> standby;
}
public class Resource {
private String content;
private Long healthCheckRegionId;
private RegionCode healthCheckRegionCode;
private ResourceType type;
private Status status;
}
Field
The following describes the fields.
ProfileRespnse
Field | Type | Required | Description |
---|---|---|---|
sid |
Long | - | Domain (profile) ID |
name |
String | - | Domain (profile) name |
policyId |
Long | - | Policy ID |
policyName |
String | - | Policy Name |
claYn |
Boolean | - | Cloud Log Analytics usage status
|
ttl |
Long | - | Domain (profile) TTL |
delYn |
Boolean | - | Domain (profile) deletion status
|
lbType |
Enum | - | Load balancer type
|
createdDate |
Long | - | Creation date (UTC 0) |
monitoringYn |
Boolean | - | Health check status
|
status |
Eum | - | Domain (profile) status
|
resourceGroups |
List<ResourceGroups> | - | Resource group information |
ResourceGroup
Field | Type | Required | Description |
---|---|---|---|
sid |
Long | - | Resource group ID |
geoMapDetailId |
Long | - | Geo/CIDR map details ID |
geoMapDetailName |
String | - | Geo/CIDR map details name |
weighted |
Long | - | Weights used when LBType is WEIGHTED_ROUND_ROBIN |
active |
List<Resource> | - | Active resource information |
standby |
List<Resource> | - | Backup resource information |
monitor |
Monitor | - | Health check monitoring information |
Resource
Field | Type | Required | Description |
---|---|---|---|
content |
String | - | Resource value |
type |
Enum | - | Resource type
|
healthCheckRegionId |
Long | - | Health check Region ID |
healthCheckRegionCode |
Enum | - | Region code
|
status |
Enum | - | Health check status
|