oci-healthchecks 2.76.1 → 2.77.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/client.d.ts +24 -18
- package/lib/client.js +26 -17
- package/lib/client.js.map +1 -1
- package/lib/model/create-http-monitor-details.d.ts +4 -4
- package/lib/model/create-on-demand-http-probe-details.d.ts +2 -2
- package/lib/model/create-on-demand-ping-probe-details.d.ts +1 -1
- package/lib/model/create-ping-monitor-details.d.ts +3 -3
- package/lib/model/d-ns.d.ts +2 -2
- package/lib/model/health-checks-vantage-point-summary.d.ts +1 -1
- package/lib/model/http-monitor-summary.d.ts +2 -2
- package/lib/model/http-monitor.d.ts +4 -4
- package/lib/model/http-probe-result-summary.d.ts +2 -2
- package/lib/model/http-probe.d.ts +2 -2
- package/lib/model/ping-monitor-summary.d.ts +2 -2
- package/lib/model/ping-monitor.d.ts +3 -3
- package/lib/model/ping-probe-result-summary.d.ts +2 -2
- package/lib/model/ping-probe.d.ts +1 -1
- package/lib/model/routing.d.ts +5 -5
- package/lib/model/tcp-connection.d.ts +2 -2
- package/lib/model/update-http-monitor-details.d.ts +4 -4
- package/lib/model/update-ping-monitor-details.d.ts +3 -3
- package/lib/request/change-http-monitor-compartment-request.d.ts +2 -2
- package/lib/request/change-ping-monitor-compartment-request.d.ts +2 -2
- package/lib/request/create-http-monitor-request.d.ts +1 -1
- package/lib/request/create-on-demand-http-probe-request.d.ts +1 -1
- package/lib/request/create-on-demand-ping-probe-request.d.ts +1 -1
- package/lib/request/create-ping-monitor-request.d.ts +1 -1
- package/lib/request/delete-http-monitor-request.d.ts +2 -2
- package/lib/request/delete-ping-monitor-request.d.ts +2 -2
- package/lib/request/get-http-monitor-request.d.ts +3 -3
- package/lib/request/get-ping-monitor-request.d.ts +3 -3
- package/lib/request/list-health-checks-vantage-points-request.d.ts +4 -4
- package/lib/request/list-http-monitors-request.d.ts +4 -4
- package/lib/request/list-http-probe-results-request.d.ts +5 -5
- package/lib/request/list-ping-monitors-request.d.ts +4 -4
- package/lib/request/list-ping-probe-results-request.d.ts +5 -5
- package/lib/request/update-http-monitor-request.d.ts +2 -2
- package/lib/request/update-ping-monitor-request.d.ts +2 -2
- package/lib/response/create-http-monitor-response.d.ts +1 -1
- package/lib/response/get-http-monitor-response.d.ts +1 -1
- package/lib/response/list-health-checks-vantage-points-response.d.ts +1 -1
- package/lib/response/list-http-monitors-response.d.ts +1 -1
- package/lib/response/list-http-probe-results-response.d.ts +1 -1
- package/lib/response/list-ping-monitors-response.d.ts +1 -1
- package/lib/response/list-ping-probe-results-response.d.ts +1 -1
- package/lib/response/update-http-monitor-response.d.ts +1 -1
- package/package.json +3 -3
|
@@ -45,7 +45,7 @@ export interface HealthChecksVantagePointSummary {
|
|
|
45
45
|
* multiple origin ASNs (MOAS routing), they are sorted by weight
|
|
46
46
|
* (highest to lowest). Weight is determined by the total percentage of
|
|
47
47
|
* peers observing the prefix originating from an ASN. Only present if
|
|
48
|
-
*
|
|
48
|
+
* {@code fields} includes {@code routing}. The field will be null if the address's
|
|
49
49
|
* routing information is unknown.
|
|
50
50
|
*
|
|
51
51
|
*/
|
|
@@ -59,7 +59,7 @@ export interface HttpMonitorSummary {
|
|
|
59
59
|
* Free-form tags for this resource. Each tag is a simple key-value pair with no
|
|
60
60
|
* predefined name, type, or namespace. For more information,
|
|
61
61
|
* see [Resource Tags](https://docs.cloud.oracle.com/Content/General/Concepts/resourcetags.htm).
|
|
62
|
-
* Example:
|
|
62
|
+
* Example: {@code {\"Department\": \"Finance\"}}
|
|
63
63
|
*
|
|
64
64
|
*/
|
|
65
65
|
"freeformTags"?: {
|
|
@@ -68,7 +68,7 @@ export interface HttpMonitorSummary {
|
|
|
68
68
|
/**
|
|
69
69
|
* Defined tags for this resource. Each key is predefined and scoped to a namespace.
|
|
70
70
|
* For more information, see [Resource Tags](https://docs.cloud.oracle.com/Content/General/Concepts/resourcetags.htm).
|
|
71
|
-
* Example:
|
|
71
|
+
* Example: {@code {\"Operations\": {\"CostCenter\": \"42\"}}}
|
|
72
72
|
*
|
|
73
73
|
*/
|
|
74
74
|
"definedTags"?: {
|
|
@@ -57,7 +57,7 @@ export interface HttpMonitor {
|
|
|
57
57
|
"port"?: number;
|
|
58
58
|
/**
|
|
59
59
|
* The probe timeout in seconds. Valid values: 10, 20, 30, and 60.
|
|
60
|
-
* The probe timeout must be less than or equal to
|
|
60
|
+
* The probe timeout must be less than or equal to {@code intervalInSeconds} for monitors.
|
|
61
61
|
* Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
|
|
62
62
|
*/
|
|
63
63
|
"timeoutInSeconds"?: number;
|
|
@@ -70,7 +70,7 @@ export interface HttpMonitor {
|
|
|
70
70
|
/**
|
|
71
71
|
* A dictionary of HTTP request headers.
|
|
72
72
|
* <p>
|
|
73
|
-
*Note:* Monitors and probes do not support the use of the
|
|
73
|
+
*Note:* Monitors and probes do not support the use of the {@code Authorization} HTTP header.
|
|
74
74
|
*
|
|
75
75
|
*/
|
|
76
76
|
"headers"?: {
|
|
@@ -94,7 +94,7 @@ export interface HttpMonitor {
|
|
|
94
94
|
* Free-form tags for this resource. Each tag is a simple key-value pair with no
|
|
95
95
|
* predefined name, type, or namespace. For more information,
|
|
96
96
|
* see [Resource Tags](https://docs.cloud.oracle.com/Content/General/Concepts/resourcetags.htm).
|
|
97
|
-
* Example:
|
|
97
|
+
* Example: {@code {\"Department\": \"Finance\"}}
|
|
98
98
|
*
|
|
99
99
|
*/
|
|
100
100
|
"freeformTags"?: {
|
|
@@ -103,7 +103,7 @@ export interface HttpMonitor {
|
|
|
103
103
|
/**
|
|
104
104
|
* Defined tags for this resource. Each key is predefined and scoped to a namespace.
|
|
105
105
|
* For more information, see [Resource Tags](https://docs.cloud.oracle.com/Content/General/Concepts/resourcetags.htm).
|
|
106
|
-
* Example:
|
|
106
|
+
* Example: {@code {\"Operations\": {\"CostCenter\": \"42\"}}}
|
|
107
107
|
*
|
|
108
108
|
*/
|
|
109
109
|
"definedTags"?: {
|
|
@@ -52,7 +52,7 @@ export interface HttpProbeResultSummary {
|
|
|
52
52
|
*/
|
|
53
53
|
"vantagePointName"?: string;
|
|
54
54
|
/**
|
|
55
|
-
* True if the probe did not complete before the configured
|
|
55
|
+
* True if the probe did not complete before the configured {@code timeoutInSeconds} value.
|
|
56
56
|
*
|
|
57
57
|
*/
|
|
58
58
|
"isTimedOut"?: boolean;
|
|
@@ -66,7 +66,7 @@ export interface HttpProbeResultSummary {
|
|
|
66
66
|
"isHealthy"?: boolean;
|
|
67
67
|
/**
|
|
68
68
|
* The category of error if an error occurs executing the probe.
|
|
69
|
-
* The
|
|
69
|
+
* The {@code errorMessage} field provides a message with the error details.
|
|
70
70
|
* * NONE - No error
|
|
71
71
|
* * DNS - DNS errors
|
|
72
72
|
* * TRANSPORT - Transport-related errors, for example a \"TLS certificate expired\" error.
|
|
@@ -57,7 +57,7 @@ export interface HttpProbe {
|
|
|
57
57
|
"port"?: number;
|
|
58
58
|
/**
|
|
59
59
|
* The probe timeout in seconds. Valid values: 10, 20, 30, and 60.
|
|
60
|
-
* The probe timeout must be less than or equal to
|
|
60
|
+
* The probe timeout must be less than or equal to {@code intervalInSeconds} for monitors.
|
|
61
61
|
* Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
|
|
62
62
|
*/
|
|
63
63
|
"timeoutInSeconds"?: number;
|
|
@@ -70,7 +70,7 @@ export interface HttpProbe {
|
|
|
70
70
|
/**
|
|
71
71
|
* A dictionary of HTTP request headers.
|
|
72
72
|
* <p>
|
|
73
|
-
*Note:* Monitors and probes do not support the use of the
|
|
73
|
+
*Note:* Monitors and probes do not support the use of the {@code Authorization} HTTP header.
|
|
74
74
|
*
|
|
75
75
|
*/
|
|
76
76
|
"headers"?: {
|
|
@@ -59,7 +59,7 @@ export interface PingMonitorSummary {
|
|
|
59
59
|
* Free-form tags for this resource. Each tag is a simple key-value pair with no
|
|
60
60
|
* predefined name, type, or namespace. For more information,
|
|
61
61
|
* see [Resource Tags](https://docs.cloud.oracle.com/Content/General/Concepts/resourcetags.htm).
|
|
62
|
-
* Example:
|
|
62
|
+
* Example: {@code {\"Department\": \"Finance\"}}
|
|
63
63
|
*
|
|
64
64
|
*/
|
|
65
65
|
"freeformTags"?: {
|
|
@@ -68,7 +68,7 @@ export interface PingMonitorSummary {
|
|
|
68
68
|
/**
|
|
69
69
|
* Defined tags for this resource. Each key is predefined and scoped to a namespace.
|
|
70
70
|
* For more information, see [Resource Tags](https://docs.cloud.oracle.com/Content/General/Concepts/resourcetags.htm).
|
|
71
|
-
* Example:
|
|
71
|
+
* Example: {@code {\"Operations\": {\"CostCenter\": \"42\"}}}
|
|
72
72
|
*
|
|
73
73
|
*/
|
|
74
74
|
"definedTags"?: {
|
|
@@ -57,7 +57,7 @@ export interface PingMonitor {
|
|
|
57
57
|
"port"?: number;
|
|
58
58
|
/**
|
|
59
59
|
* The probe timeout in seconds. Valid values: 10, 20, 30, and 60.
|
|
60
|
-
* The probe timeout must be less than or equal to
|
|
60
|
+
* The probe timeout must be less than or equal to {@code intervalInSeconds} for monitors.
|
|
61
61
|
* Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
|
|
62
62
|
*/
|
|
63
63
|
"timeoutInSeconds"?: number;
|
|
@@ -80,7 +80,7 @@ export interface PingMonitor {
|
|
|
80
80
|
* Free-form tags for this resource. Each tag is a simple key-value pair with no
|
|
81
81
|
* predefined name, type, or namespace. For more information,
|
|
82
82
|
* see [Resource Tags](https://docs.cloud.oracle.com/Content/General/Concepts/resourcetags.htm).
|
|
83
|
-
* Example:
|
|
83
|
+
* Example: {@code {\"Department\": \"Finance\"}}
|
|
84
84
|
*
|
|
85
85
|
*/
|
|
86
86
|
"freeformTags"?: {
|
|
@@ -89,7 +89,7 @@ export interface PingMonitor {
|
|
|
89
89
|
/**
|
|
90
90
|
* Defined tags for this resource. Each key is predefined and scoped to a namespace.
|
|
91
91
|
* For more information, see [Resource Tags](https://docs.cloud.oracle.com/Content/General/Concepts/resourcetags.htm).
|
|
92
|
-
* Example:
|
|
92
|
+
* Example: {@code {\"Operations\": {\"CostCenter\": \"42\"}}}
|
|
93
93
|
*
|
|
94
94
|
*/
|
|
95
95
|
"definedTags"?: {
|
|
@@ -49,7 +49,7 @@ export interface PingProbeResultSummary {
|
|
|
49
49
|
*/
|
|
50
50
|
"vantagePointName"?: string;
|
|
51
51
|
/**
|
|
52
|
-
* True if the probe did not complete before the configured
|
|
52
|
+
* True if the probe did not complete before the configured {@code timeoutInSeconds} value.
|
|
53
53
|
*
|
|
54
54
|
*/
|
|
55
55
|
"isTimedOut"?: boolean;
|
|
@@ -63,7 +63,7 @@ export interface PingProbeResultSummary {
|
|
|
63
63
|
"isHealthy"?: boolean;
|
|
64
64
|
/**
|
|
65
65
|
* The category of error if an error occurs executing the probe.
|
|
66
|
-
* The
|
|
66
|
+
* The {@code errorMessage} field provides a message with the error details.
|
|
67
67
|
* * NONE - No error
|
|
68
68
|
* * DNS - DNS errors
|
|
69
69
|
* * TRANSPORT - Transport-related errors, for example a \"TLS certificate expired\" error.
|
|
@@ -57,7 +57,7 @@ export interface PingProbe {
|
|
|
57
57
|
"port"?: number;
|
|
58
58
|
/**
|
|
59
59
|
* The probe timeout in seconds. Valid values: 10, 20, 30, and 60.
|
|
60
|
-
* The probe timeout must be less than or equal to
|
|
60
|
+
* The probe timeout must be less than or equal to {@code intervalInSeconds} for monitors.
|
|
61
61
|
* Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
|
|
62
62
|
*/
|
|
63
63
|
"timeoutInSeconds"?: number;
|
package/lib/model/routing.d.ts
CHANGED
|
@@ -18,27 +18,27 @@ For more information, see
|
|
|
18
18
|
*/
|
|
19
19
|
export interface Routing {
|
|
20
20
|
/**
|
|
21
|
-
* The registry label for
|
|
21
|
+
* The registry label for {@code asn}, usually the name of the organization that
|
|
22
22
|
* owns the ASN. May be omitted or null.
|
|
23
23
|
*
|
|
24
24
|
*/
|
|
25
25
|
"asLabel"?: string;
|
|
26
26
|
/**
|
|
27
27
|
* The Autonomous System Number (ASN) identifying the organization
|
|
28
|
-
* responsible for routing packets to
|
|
28
|
+
* responsible for routing packets to {@code prefix}.
|
|
29
29
|
* Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
|
|
30
30
|
*/
|
|
31
31
|
"asn"?: number;
|
|
32
32
|
/**
|
|
33
33
|
* An IP prefix (CIDR syntax) that is less specific than
|
|
34
|
-
*
|
|
34
|
+
* {@code address}, through which {@code address} is routed.
|
|
35
35
|
*
|
|
36
36
|
*/
|
|
37
37
|
"prefix"?: string;
|
|
38
38
|
/**
|
|
39
39
|
* An integer between 0 and 100 used to select between multiple
|
|
40
|
-
* origin ASNs when routing to
|
|
41
|
-
* exactly one origin ASN, in which case
|
|
40
|
+
* origin ASNs when routing to {@code prefix}. Most prefixes have
|
|
41
|
+
* exactly one origin ASN, in which case {@code weight} will be 100.
|
|
42
42
|
* Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
|
|
43
43
|
*/
|
|
44
44
|
"weight"?: number;
|
|
@@ -26,12 +26,12 @@ export interface TcpConnection {
|
|
|
26
26
|
*/
|
|
27
27
|
"port"?: number;
|
|
28
28
|
/**
|
|
29
|
-
* Total connect duration, calculated using
|
|
29
|
+
* Total connect duration, calculated using {@code connectEnd} minus {@code connectStart}. Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
|
|
30
30
|
*/
|
|
31
31
|
"connectDuration"?: number;
|
|
32
32
|
/**
|
|
33
33
|
* The duration to secure the connection. This value will be zero for
|
|
34
|
-
* insecure connections. Calculated using
|
|
34
|
+
* insecure connections. Calculated using {@code connectEnd} minus {@code secureConnectionStart}.
|
|
35
35
|
* Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
|
|
36
36
|
*/
|
|
37
37
|
"secureConnectDuration"?: number;
|
|
@@ -34,7 +34,7 @@ export interface UpdateHttpMonitorDetails {
|
|
|
34
34
|
"port"?: number;
|
|
35
35
|
/**
|
|
36
36
|
* The probe timeout in seconds. Valid values: 10, 20, 30, and 60.
|
|
37
|
-
* The probe timeout must be less than or equal to
|
|
37
|
+
* The probe timeout must be less than or equal to {@code intervalInSeconds} for monitors.
|
|
38
38
|
* Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
|
|
39
39
|
*/
|
|
40
40
|
"timeoutInSeconds"?: number;
|
|
@@ -47,7 +47,7 @@ export interface UpdateHttpMonitorDetails {
|
|
|
47
47
|
/**
|
|
48
48
|
* A dictionary of HTTP request headers.
|
|
49
49
|
* <p>
|
|
50
|
-
*Note:* Monitors and probes do not support the use of the
|
|
50
|
+
*Note:* Monitors and probes do not support the use of the {@code Authorization} HTTP header.
|
|
51
51
|
*
|
|
52
52
|
*/
|
|
53
53
|
"headers"?: {
|
|
@@ -71,7 +71,7 @@ export interface UpdateHttpMonitorDetails {
|
|
|
71
71
|
* Free-form tags for this resource. Each tag is a simple key-value pair with no
|
|
72
72
|
* predefined name, type, or namespace. For more information,
|
|
73
73
|
* see [Resource Tags](https://docs.cloud.oracle.com/Content/General/Concepts/resourcetags.htm).
|
|
74
|
-
* Example:
|
|
74
|
+
* Example: {@code {\"Department\": \"Finance\"}}
|
|
75
75
|
*
|
|
76
76
|
*/
|
|
77
77
|
"freeformTags"?: {
|
|
@@ -80,7 +80,7 @@ export interface UpdateHttpMonitorDetails {
|
|
|
80
80
|
/**
|
|
81
81
|
* Defined tags for this resource. Each key is predefined and scoped to a namespace.
|
|
82
82
|
* For more information, see [Resource Tags](https://docs.cloud.oracle.com/Content/General/Concepts/resourcetags.htm).
|
|
83
|
-
* Example:
|
|
83
|
+
* Example: {@code {\"Operations\": {\"CostCenter\": \"42\"}}}
|
|
84
84
|
*
|
|
85
85
|
*/
|
|
86
86
|
"definedTags"?: {
|
|
@@ -34,7 +34,7 @@ export interface UpdatePingMonitorDetails {
|
|
|
34
34
|
"port"?: number;
|
|
35
35
|
/**
|
|
36
36
|
* The probe timeout in seconds. Valid values: 10, 20, 30, and 60.
|
|
37
|
-
* The probe timeout must be less than or equal to
|
|
37
|
+
* The probe timeout must be less than or equal to {@code intervalInSeconds} for monitors.
|
|
38
38
|
* Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
|
|
39
39
|
*/
|
|
40
40
|
"timeoutInSeconds"?: number;
|
|
@@ -57,7 +57,7 @@ export interface UpdatePingMonitorDetails {
|
|
|
57
57
|
* Free-form tags for this resource. Each tag is a simple key-value pair with no
|
|
58
58
|
* predefined name, type, or namespace. For more information,
|
|
59
59
|
* see [Resource Tags](https://docs.cloud.oracle.com/Content/General/Concepts/resourcetags.htm).
|
|
60
|
-
* Example:
|
|
60
|
+
* Example: {@code {\"Department\": \"Finance\"}}
|
|
61
61
|
*
|
|
62
62
|
*/
|
|
63
63
|
"freeformTags"?: {
|
|
@@ -66,7 +66,7 @@ export interface UpdatePingMonitorDetails {
|
|
|
66
66
|
/**
|
|
67
67
|
* Defined tags for this resource. Each key is predefined and scoped to a namespace.
|
|
68
68
|
* For more information, see [Resource Tags](https://docs.cloud.oracle.com/Content/General/Concepts/resourcetags.htm).
|
|
69
|
-
* Example:
|
|
69
|
+
* Example: {@code {\"Operations\": {\"CostCenter\": \"42\"}}}
|
|
70
70
|
*
|
|
71
71
|
*/
|
|
72
72
|
"definedTags"?: {
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
import * as model from "../model";
|
|
14
14
|
import common = require("oci-common");
|
|
15
15
|
/**
|
|
16
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/healthchecks/ChangeHttpMonitorCompartment.ts.html |here} to see how to use ChangeHttpMonitorCompartmentRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface ChangeHttpMonitorCompartmentRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -26,7 +26,7 @@ export interface ChangeHttpMonitorCompartmentRequest extends common.BaseRequest
|
|
|
26
26
|
"changeHttpMonitorCompartmentDetails": model.ChangeHttpMonitorCompartmentDetails;
|
|
27
27
|
/**
|
|
28
28
|
* For optimistic concurrency control. In the PUT or DELETE call for a resource,
|
|
29
|
-
* set the
|
|
29
|
+
* set the {@code if-match} parameter to the value of the etag from a previous GET
|
|
30
30
|
* or POST response for that resource. The resource will be updated or deleted
|
|
31
31
|
* only if the etag you provide matches the resource's current etag value.
|
|
32
32
|
*
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
import * as model from "../model";
|
|
14
14
|
import common = require("oci-common");
|
|
15
15
|
/**
|
|
16
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/healthchecks/ChangePingMonitorCompartment.ts.html |here} to see how to use ChangePingMonitorCompartmentRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface ChangePingMonitorCompartmentRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -26,7 +26,7 @@ export interface ChangePingMonitorCompartmentRequest extends common.BaseRequest
|
|
|
26
26
|
"changePingMonitorCompartmentDetails": model.ChangePingMonitorCompartmentDetails;
|
|
27
27
|
/**
|
|
28
28
|
* For optimistic concurrency control. In the PUT or DELETE call for a resource,
|
|
29
|
-
* set the
|
|
29
|
+
* set the {@code if-match} parameter to the value of the etag from a previous GET
|
|
30
30
|
* or POST response for that resource. The resource will be updated or deleted
|
|
31
31
|
* only if the etag you provide matches the resource's current etag value.
|
|
32
32
|
*
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
import * as model from "../model";
|
|
14
14
|
import common = require("oci-common");
|
|
15
15
|
/**
|
|
16
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/healthchecks/CreateHttpMonitor.ts.html |here} to see how to use CreateHttpMonitorRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface CreateHttpMonitorRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
import * as model from "../model";
|
|
14
14
|
import common = require("oci-common");
|
|
15
15
|
/**
|
|
16
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/healthchecks/CreateOnDemandHttpProbe.ts.html |here} to see how to use CreateOnDemandHttpProbeRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface CreateOnDemandHttpProbeRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
import * as model from "../model";
|
|
14
14
|
import common = require("oci-common");
|
|
15
15
|
/**
|
|
16
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/healthchecks/CreateOnDemandPingProbe.ts.html |here} to see how to use CreateOnDemandPingProbeRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface CreateOnDemandPingProbeRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
import * as model from "../model";
|
|
14
14
|
import common = require("oci-common");
|
|
15
15
|
/**
|
|
16
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/healthchecks/CreatePingMonitor.ts.html |here} to see how to use CreatePingMonitorRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface CreatePingMonitorRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/healthchecks/DeleteHttpMonitor.ts.html |here} to see how to use DeleteHttpMonitorRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface DeleteHttpMonitorRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -27,7 +27,7 @@ export interface DeleteHttpMonitorRequest extends common.BaseRequest {
|
|
|
27
27
|
"opcRequestId"?: string;
|
|
28
28
|
/**
|
|
29
29
|
* For optimistic concurrency control. In the PUT or DELETE call for a resource,
|
|
30
|
-
* set the
|
|
30
|
+
* set the {@code if-match} parameter to the value of the etag from a previous GET
|
|
31
31
|
* or POST response for that resource. The resource will be updated or deleted
|
|
32
32
|
* only if the etag you provide matches the resource's current etag value.
|
|
33
33
|
*
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/healthchecks/DeletePingMonitor.ts.html |here} to see how to use DeletePingMonitorRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface DeletePingMonitorRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -27,7 +27,7 @@ export interface DeletePingMonitorRequest extends common.BaseRequest {
|
|
|
27
27
|
"opcRequestId"?: string;
|
|
28
28
|
/**
|
|
29
29
|
* For optimistic concurrency control. In the PUT or DELETE call for a resource,
|
|
30
|
-
* set the
|
|
30
|
+
* set the {@code if-match} parameter to the value of the etag from a previous GET
|
|
31
31
|
* or POST response for that resource. The resource will be updated or deleted
|
|
32
32
|
* only if the etag you provide matches the resource's current etag value.
|
|
33
33
|
*
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/healthchecks/GetHttpMonitor.ts.html |here} to see how to use GetHttpMonitorRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface GetHttpMonitorRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -26,9 +26,9 @@ export interface GetHttpMonitorRequest extends common.BaseRequest {
|
|
|
26
26
|
*/
|
|
27
27
|
"opcRequestId"?: string;
|
|
28
28
|
/**
|
|
29
|
-
* The
|
|
29
|
+
* The {@code If-None-Match} header field makes the request method conditional on
|
|
30
30
|
* the absence of any current representation of the target resource, when
|
|
31
|
-
* the field-value is
|
|
31
|
+
* the field-value is {@code *}, or having a selected representation with an
|
|
32
32
|
* entity-tag that does not match any of those listed in the field-value.
|
|
33
33
|
*
|
|
34
34
|
*/
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/healthchecks/GetPingMonitor.ts.html |here} to see how to use GetPingMonitorRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface GetPingMonitorRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -26,9 +26,9 @@ export interface GetPingMonitorRequest extends common.BaseRequest {
|
|
|
26
26
|
*/
|
|
27
27
|
"opcRequestId"?: string;
|
|
28
28
|
/**
|
|
29
|
-
* The
|
|
29
|
+
* The {@code If-None-Match} header field makes the request method conditional on
|
|
30
30
|
* the absence of any current representation of the target resource, when
|
|
31
|
-
* the field-value is
|
|
31
|
+
* the field-value is {@code *}, or having a selected representation with an
|
|
32
32
|
* entity-tag that does not match any of those listed in the field-value.
|
|
33
33
|
*
|
|
34
34
|
*/
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/healthchecks/ListHealthChecksVantagePoints.ts.html |here} to see how to use ListHealthChecksVantagePointsRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface ListHealthChecksVantagePointsRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -27,7 +27,7 @@ export interface ListHealthChecksVantagePointsRequest extends common.BaseRequest
|
|
|
27
27
|
*/
|
|
28
28
|
"limit"?: number;
|
|
29
29
|
/**
|
|
30
|
-
* The value of the
|
|
30
|
+
* The value of the {@code opc-next-page} response header
|
|
31
31
|
* from the previous \"List\" call.
|
|
32
32
|
*
|
|
33
33
|
*/
|
|
@@ -41,11 +41,11 @@ export interface ListHealthChecksVantagePointsRequest extends common.BaseRequest
|
|
|
41
41
|
*/
|
|
42
42
|
"sortOrder"?: ListHealthChecksVantagePointsRequest.SortOrder;
|
|
43
43
|
/**
|
|
44
|
-
* Filters results that exactly match the
|
|
44
|
+
* Filters results that exactly match the {@code name} field.
|
|
45
45
|
*/
|
|
46
46
|
"name"?: string;
|
|
47
47
|
/**
|
|
48
|
-
* Filters results that exactly match the
|
|
48
|
+
* Filters results that exactly match the {@code displayName} field.
|
|
49
49
|
*/
|
|
50
50
|
"displayName"?: string;
|
|
51
51
|
}
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/healthchecks/ListHttpMonitors.ts.html |here} to see how to use ListHttpMonitorsRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface ListHttpMonitorsRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -31,7 +31,7 @@ export interface ListHttpMonitorsRequest extends common.BaseRequest {
|
|
|
31
31
|
*/
|
|
32
32
|
"limit"?: number;
|
|
33
33
|
/**
|
|
34
|
-
* The value of the
|
|
34
|
+
* The value of the {@code opc-next-page} response header
|
|
35
35
|
* from the previous \"List\" call.
|
|
36
36
|
*
|
|
37
37
|
*/
|
|
@@ -45,11 +45,11 @@ export interface ListHttpMonitorsRequest extends common.BaseRequest {
|
|
|
45
45
|
*/
|
|
46
46
|
"sortOrder"?: ListHttpMonitorsRequest.SortOrder;
|
|
47
47
|
/**
|
|
48
|
-
* Filters results that exactly match the
|
|
48
|
+
* Filters results that exactly match the {@code displayName} field.
|
|
49
49
|
*/
|
|
50
50
|
"displayName"?: string;
|
|
51
51
|
/**
|
|
52
|
-
* Filters results that match the
|
|
52
|
+
* Filters results that match the {@code homeRegion}.
|
|
53
53
|
*/
|
|
54
54
|
"homeRegion"?: string;
|
|
55
55
|
}
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/healthchecks/ListHttpProbeResults.ts.html |here} to see how to use ListHttpProbeResultsRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface ListHttpProbeResultsRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -31,17 +31,17 @@ export interface ListHttpProbeResultsRequest extends common.BaseRequest {
|
|
|
31
31
|
*/
|
|
32
32
|
"limit"?: number;
|
|
33
33
|
/**
|
|
34
|
-
* The value of the
|
|
34
|
+
* The value of the {@code opc-next-page} response header
|
|
35
35
|
* from the previous \"List\" call.
|
|
36
36
|
*
|
|
37
37
|
*/
|
|
38
38
|
"page"?: string;
|
|
39
39
|
/**
|
|
40
|
-
* Returns results with a
|
|
40
|
+
* Returns results with a {@code startTime} equal to or greater than the specified value.
|
|
41
41
|
*/
|
|
42
42
|
"startTimeGreaterThanOrEqualTo"?: number;
|
|
43
43
|
/**
|
|
44
|
-
* Returns results with a
|
|
44
|
+
* Returns results with a {@code startTime} equal to or less than the specified value.
|
|
45
45
|
*/
|
|
46
46
|
"startTimeLessThanOrEqualTo"?: number;
|
|
47
47
|
/**
|
|
@@ -49,7 +49,7 @@ export interface ListHttpProbeResultsRequest extends common.BaseRequest {
|
|
|
49
49
|
*/
|
|
50
50
|
"sortOrder"?: ListHttpProbeResultsRequest.SortOrder;
|
|
51
51
|
/**
|
|
52
|
-
* Filters results that match the
|
|
52
|
+
* Filters results that match the {@code target}.
|
|
53
53
|
*/
|
|
54
54
|
"target"?: string;
|
|
55
55
|
}
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/healthchecks/ListPingMonitors.ts.html |here} to see how to use ListPingMonitorsRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface ListPingMonitorsRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -31,7 +31,7 @@ export interface ListPingMonitorsRequest extends common.BaseRequest {
|
|
|
31
31
|
*/
|
|
32
32
|
"limit"?: number;
|
|
33
33
|
/**
|
|
34
|
-
* The value of the
|
|
34
|
+
* The value of the {@code opc-next-page} response header
|
|
35
35
|
* from the previous \"List\" call.
|
|
36
36
|
*
|
|
37
37
|
*/
|
|
@@ -45,11 +45,11 @@ export interface ListPingMonitorsRequest extends common.BaseRequest {
|
|
|
45
45
|
*/
|
|
46
46
|
"sortOrder"?: ListPingMonitorsRequest.SortOrder;
|
|
47
47
|
/**
|
|
48
|
-
* Filters results that exactly match the
|
|
48
|
+
* Filters results that exactly match the {@code displayName} field.
|
|
49
49
|
*/
|
|
50
50
|
"displayName"?: string;
|
|
51
51
|
/**
|
|
52
|
-
* Filters results that match the
|
|
52
|
+
* Filters results that match the {@code homeRegion}.
|
|
53
53
|
*/
|
|
54
54
|
"homeRegion"?: string;
|
|
55
55
|
}
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/healthchecks/ListPingProbeResults.ts.html |here} to see how to use ListPingProbeResultsRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface ListPingProbeResultsRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -31,17 +31,17 @@ export interface ListPingProbeResultsRequest extends common.BaseRequest {
|
|
|
31
31
|
*/
|
|
32
32
|
"limit"?: number;
|
|
33
33
|
/**
|
|
34
|
-
* The value of the
|
|
34
|
+
* The value of the {@code opc-next-page} response header
|
|
35
35
|
* from the previous \"List\" call.
|
|
36
36
|
*
|
|
37
37
|
*/
|
|
38
38
|
"page"?: string;
|
|
39
39
|
/**
|
|
40
|
-
* Returns results with a
|
|
40
|
+
* Returns results with a {@code startTime} equal to or greater than the specified value.
|
|
41
41
|
*/
|
|
42
42
|
"startTimeGreaterThanOrEqualTo"?: number;
|
|
43
43
|
/**
|
|
44
|
-
* Returns results with a
|
|
44
|
+
* Returns results with a {@code startTime} equal to or less than the specified value.
|
|
45
45
|
*/
|
|
46
46
|
"startTimeLessThanOrEqualTo"?: number;
|
|
47
47
|
/**
|
|
@@ -49,7 +49,7 @@ export interface ListPingProbeResultsRequest extends common.BaseRequest {
|
|
|
49
49
|
*/
|
|
50
50
|
"sortOrder"?: ListPingProbeResultsRequest.SortOrder;
|
|
51
51
|
/**
|
|
52
|
-
* Filters results that match the
|
|
52
|
+
* Filters results that match the {@code target}.
|
|
53
53
|
*/
|
|
54
54
|
"target"?: string;
|
|
55
55
|
}
|