|
2722 | 2722 | }, |
2723 | 2723 | "bytesToCapturePerPacket": { |
2724 | 2724 | "type": "integer", |
| 2725 | + "format": "int64", |
| 2726 | + "minimum": 0, |
| 2727 | + "maximum": 4294967295, |
2725 | 2728 | "default": 0, |
2726 | 2729 | "description": "Number of bytes captured per packet, the remaining bytes are truncated." |
2727 | 2730 | }, |
2728 | 2731 | "totalBytesPerSession": { |
2729 | 2732 | "type": "integer", |
| 2733 | + "format": "int64", |
| 2734 | + "minimum": 0, |
| 2735 | + "maximum": 4294967295, |
2730 | 2736 | "default": 1073741824, |
2731 | 2737 | "description": "Maximum size of the capture output." |
2732 | 2738 | }, |
2733 | 2739 | "timeLimitInSeconds": { |
2734 | 2740 | "type": "integer", |
| 2741 | + "format": "int32", |
| 2742 | + "minimum": 0, |
| 2743 | + "maximum": 18000, |
2735 | 2744 | "default": 18000, |
2736 | 2745 | "description": "Maximum duration of the capture session in seconds." |
2737 | 2746 | }, |
|
3157 | 3166 | "days": { |
3158 | 3167 | "description": "Number of days to retain flow log records.", |
3159 | 3168 | "type": "integer", |
| 3169 | + "format": "int32", |
3160 | 3170 | "default": 0 |
3161 | 3171 | }, |
3162 | 3172 | "enabled": { |
|
3183 | 3193 | "version": { |
3184 | 3194 | "description": "The version (revision) of the flow log.", |
3185 | 3195 | "type": "integer", |
| 3196 | + "format": "int32", |
3186 | 3197 | "default": 0 |
3187 | 3198 | } |
3188 | 3199 | } |
|
3239 | 3250 | }, |
3240 | 3251 | "trafficAnalyticsInterval": { |
3241 | 3252 | "description": "The interval in minutes which would decide how frequently TA service should do flow analytics.", |
3242 | | - "type": "integer" |
| 3253 | + "type": "integer", |
| 3254 | + "format": "int32" |
3243 | 3255 | } |
3244 | 3256 | } |
3245 | 3257 | }, |
|
3294 | 3306 | }, |
3295 | 3307 | "port": { |
3296 | 3308 | "description": "The source port from which a connectivity check will be performed.", |
3297 | | - "type": "integer" |
| 3309 | + "type": "integer", |
| 3310 | + "format": "int32", |
| 3311 | + "minimum": 0, |
| 3312 | + "maximum": 65535 |
3298 | 3313 | } |
3299 | 3314 | } |
3300 | 3315 | }, |
|
3311 | 3326 | }, |
3312 | 3327 | "port": { |
3313 | 3328 | "description": "Port on which check connectivity will be performed.", |
3314 | | - "type": "integer" |
| 3329 | + "type": "integer", |
| 3330 | + "format": "int32", |
| 3331 | + "minimum": 0, |
| 3332 | + "maximum": 65535 |
3315 | 3333 | } |
3316 | 3334 | } |
3317 | 3335 | }, |
|
3344 | 3362 | "avgLatencyInMs": { |
3345 | 3363 | "description": "Average latency in milliseconds.", |
3346 | 3364 | "readOnly": true, |
3347 | | - "type": "integer" |
| 3365 | + "type": "integer", |
| 3366 | + "format": "int32" |
3348 | 3367 | }, |
3349 | 3368 | "minLatencyInMs": { |
3350 | 3369 | "description": "Minimum latency in milliseconds.", |
3351 | 3370 | "readOnly": true, |
3352 | | - "type": "integer" |
| 3371 | + "type": "integer", |
| 3372 | + "format": "int32" |
3353 | 3373 | }, |
3354 | 3374 | "maxLatencyInMs": { |
3355 | 3375 | "description": "Maximum latency in milliseconds.", |
3356 | 3376 | "readOnly": true, |
3357 | | - "type": "integer" |
| 3377 | + "type": "integer", |
| 3378 | + "format": "int32" |
3358 | 3379 | }, |
3359 | 3380 | "probesSent": { |
3360 | 3381 | "description": "Total number of probes sent.", |
3361 | 3382 | "readOnly": true, |
3362 | | - "type": "integer" |
| 3383 | + "type": "integer", |
| 3384 | + "format": "int32" |
3363 | 3385 | }, |
3364 | 3386 | "probesFailed": { |
3365 | 3387 | "description": "Number of failed probes.", |
3366 | 3388 | "readOnly": true, |
3367 | | - "type": "integer" |
| 3389 | + "type": "integer", |
| 3390 | + "format": "int32" |
3368 | 3391 | } |
3369 | 3392 | } |
3370 | 3393 | }, |
|
3480 | 3503 | "roundTripTimeMin": { |
3481 | 3504 | "description": "Minimum roundtrip time in milliseconds.", |
3482 | 3505 | "readOnly": true, |
3483 | | - "type": "integer" |
| 3506 | + "type": "integer", |
| 3507 | + "format": "int64", |
| 3508 | + "minimum": 0, |
| 3509 | + "maximum": 4294967295 |
3484 | 3510 | }, |
3485 | 3511 | "roundTripTimeAvg": { |
3486 | 3512 | "description": "Average roundtrip time in milliseconds.", |
3487 | 3513 | "readOnly": true, |
3488 | | - "type": "integer" |
| 3514 | + "type": "integer", |
| 3515 | + "format": "int64", |
| 3516 | + "minimum": 0, |
| 3517 | + "maximum": 4294967295 |
3489 | 3518 | }, |
3490 | 3519 | "roundTripTimeMax": { |
3491 | 3520 | "description": "Maximum roundtrip time in milliseconds.", |
3492 | 3521 | "readOnly": true, |
3493 | | - "type": "integer" |
| 3522 | + "type": "integer", |
| 3523 | + "format": "int64", |
| 3524 | + "minimum": 0, |
| 3525 | + "maximum": 4294967295 |
3494 | 3526 | } |
3495 | 3527 | } |
3496 | 3528 | }, |
|
3593 | 3625 | "validStatusCodes": { |
3594 | 3626 | "type": "array", |
3595 | 3627 | "items": { |
3596 | | - "type": "integer" |
| 3628 | + "type": "integer", |
| 3629 | + "format": "int32" |
3597 | 3630 | }, |
3598 | 3631 | "description": "Valid status codes." |
3599 | 3632 | } |
|
3725 | 3758 | }, |
3726 | 3759 | "score": { |
3727 | 3760 | "type": "integer", |
| 3761 | + "format": "int32", |
3728 | 3762 | "description": "The relative latency score between 1 and 100, higher values indicating a faster connection.", |
3729 | 3763 | "minimum": 1, |
3730 | 3764 | "maximum": 100 |
|
4061 | 4095 | }, |
4062 | 4096 | "monitoringIntervalInSeconds": { |
4063 | 4097 | "type": "integer", |
| 4098 | + "format": "int32", |
| 4099 | + "minimum": 30, |
| 4100 | + "maximum": 1800, |
4064 | 4101 | "default": 60, |
4065 | 4102 | "description": "Monitoring interval in seconds." |
4066 | 4103 | }, |
|
4107 | 4144 | }, |
4108 | 4145 | "port": { |
4109 | 4146 | "type": "integer", |
| 4147 | + "format": "int32", |
| 4148 | + "minimum": 0, |
| 4149 | + "maximum": 65535, |
4110 | 4150 | "description": "The source port used by connection monitor." |
4111 | 4151 | } |
4112 | 4152 | }, |
|
4127 | 4167 | }, |
4128 | 4168 | "port": { |
4129 | 4169 | "type": "integer", |
| 4170 | + "format": "int32", |
| 4171 | + "minimum": 0, |
| 4172 | + "maximum": 65535, |
4130 | 4173 | "description": "The destination port used by connection monitor." |
4131 | 4174 | } |
4132 | 4175 | }, |
|
4311 | 4354 | }, |
4312 | 4355 | "testFrequencySec": { |
4313 | 4356 | "type": "integer", |
| 4357 | + "format": "int32", |
4314 | 4358 | "description": "The frequency of test evaluation, in seconds." |
4315 | 4359 | }, |
4316 | 4360 | "protocol": { |
|
4365 | 4409 | "properties": { |
4366 | 4410 | "port": { |
4367 | 4411 | "type": "integer", |
| 4412 | + "format": "int32", |
| 4413 | + "minimum": 0, |
| 4414 | + "maximum": 65535, |
4368 | 4415 | "description": "The port to connect to." |
4369 | 4416 | }, |
4370 | 4417 | "method": { |
|
4408 | 4455 | "properties": { |
4409 | 4456 | "port": { |
4410 | 4457 | "type": "integer", |
| 4458 | + "format": "int32", |
| 4459 | + "minimum": 0, |
| 4460 | + "maximum": 65535, |
4411 | 4461 | "description": "The port to connect to." |
4412 | 4462 | }, |
4413 | 4463 | "disableTraceRoute": { |
|
4442 | 4492 | "properties": { |
4443 | 4493 | "checksFailedPercent": { |
4444 | 4494 | "type": "integer", |
| 4495 | + "format": "int32", |
4445 | 4496 | "description": "The maximum percentage of failed checks permitted for a test to evaluate as successful." |
4446 | 4497 | }, |
4447 | 4498 | "roundTripTimeMs": { |
|
4520 | 4571 | }, |
4521 | 4572 | "avgLatencyInMs": { |
4522 | 4573 | "type": "integer", |
| 4574 | + "format": "int64", |
| 4575 | + "minimum": 0, |
| 4576 | + "maximum": 4294967295, |
4523 | 4577 | "description": "Average latency in ms." |
4524 | 4578 | }, |
4525 | 4579 | "minLatencyInMs": { |
4526 | 4580 | "type": "integer", |
| 4581 | + "format": "int64", |
| 4582 | + "minimum": 0, |
| 4583 | + "maximum": 4294967295, |
4527 | 4584 | "description": "Minimum latency in ms." |
4528 | 4585 | }, |
4529 | 4586 | "maxLatencyInMs": { |
4530 | 4587 | "type": "integer", |
| 4588 | + "format": "int64", |
| 4589 | + "minimum": 0, |
| 4590 | + "maximum": 4294967295, |
4531 | 4591 | "description": "Maximum latency in ms." |
4532 | 4592 | }, |
4533 | 4593 | "probesSent": { |
4534 | 4594 | "type": "integer", |
| 4595 | + "format": "int64", |
| 4596 | + "minimum": 0, |
| 4597 | + "maximum": 4294967295, |
4535 | 4598 | "description": "The number of sent probes." |
4536 | 4599 | }, |
4537 | 4600 | "probesFailed": { |
4538 | 4601 | "type": "integer", |
| 4602 | + "format": "int64", |
| 4603 | + "minimum": 0, |
| 4604 | + "maximum": 4294967295, |
4539 | 4605 | "description": "The number of failed probes." |
4540 | 4606 | }, |
4541 | 4607 | "hops": { |
|
0 commit comments