Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20357,7 +20357,7 @@ components:
type: boolean
ignore_certificate_validation:
description: |-
For SSL tests, whether or not the test should ignore certificate validation.
For SSL tests, whether the test should ignore certificate validation.
type: boolean
initialNavigationTimeout:
description: Timeout before declaring the initial step as failed (in seconds) for browser tests.
Expand Down Expand Up @@ -20600,6 +20600,10 @@ components:
type: string
httpVersion:
$ref: "#/components/schemas/SyntheticsTestOptionsHTTPVersion"
ignore_certificate_validation:
description: |-
For SSL tests, whether the test should ignore certificate validation.
type: boolean
isMessageBase64Encoded:
description: Whether the message is base64 encoded.
type: boolean
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -489,7 +489,7 @@ public SyntheticsTestOptions ignoreCertificateValidation(Boolean ignoreCertifica
}

/**
* For SSL tests, whether or not the test should ignore certificate validation.
* For SSL tests, whether the test should ignore certificate validation.
*
* @return ignoreCertificateValidation
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
SyntheticsTestRequest.JSON_PROPERTY_HEADERS,
SyntheticsTestRequest.JSON_PROPERTY_HOST,
SyntheticsTestRequest.JSON_PROPERTY_HTTP_VERSION,
SyntheticsTestRequest.JSON_PROPERTY_IGNORE_CERTIFICATE_VALIDATION,
SyntheticsTestRequest.JSON_PROPERTY_IS_MESSAGE_BASE64_ENCODED,
SyntheticsTestRequest.JSON_PROPERTY_MCP_PROTOCOL_VERSION,
SyntheticsTestRequest.JSON_PROPERTY_MESSAGE,
Expand Down Expand Up @@ -121,6 +122,10 @@ public class SyntheticsTestRequest {
public static final String JSON_PROPERTY_HTTP_VERSION = "httpVersion";
private SyntheticsTestOptionsHTTPVersion httpVersion;

public static final String JSON_PROPERTY_IGNORE_CERTIFICATE_VALIDATION =
"ignore_certificate_validation";
private Boolean ignoreCertificateValidation;

public static final String JSON_PROPERTY_IS_MESSAGE_BASE64_ENCODED = "isMessageBase64Encoded";
private Boolean isMessageBase64Encoded;

Expand Down Expand Up @@ -632,6 +637,27 @@ public void setHttpVersion(SyntheticsTestOptionsHTTPVersion httpVersion) {
this.httpVersion = httpVersion;
}

public SyntheticsTestRequest ignoreCertificateValidation(Boolean ignoreCertificateValidation) {
this.ignoreCertificateValidation = ignoreCertificateValidation;
return this;
}

/**
* For SSL tests, whether the test should ignore certificate validation.
*
* @return ignoreCertificateValidation
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_IGNORE_CERTIFICATE_VALIDATION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Boolean getIgnoreCertificateValidation() {
return ignoreCertificateValidation;
}

public void setIgnoreCertificateValidation(Boolean ignoreCertificateValidation) {
this.ignoreCertificateValidation = ignoreCertificateValidation;
}

public SyntheticsTestRequest isMessageBase64Encoded(Boolean isMessageBase64Encoded) {
this.isMessageBase64Encoded = isMessageBase64Encoded;
return this;
Expand Down Expand Up @@ -1117,6 +1143,8 @@ public boolean equals(Object o) {
&& Objects.equals(this.headers, syntheticsTestRequest.headers)
&& Objects.equals(this.host, syntheticsTestRequest.host)
&& Objects.equals(this.httpVersion, syntheticsTestRequest.httpVersion)
&& Objects.equals(
this.ignoreCertificateValidation, syntheticsTestRequest.ignoreCertificateValidation)
&& Objects.equals(this.isMessageBase64Encoded, syntheticsTestRequest.isMessageBase64Encoded)
&& Objects.equals(this.mcpProtocolVersion, syntheticsTestRequest.mcpProtocolVersion)
&& Objects.equals(this.message, syntheticsTestRequest.message)
Expand Down Expand Up @@ -1160,6 +1188,7 @@ public int hashCode() {
headers,
host,
httpVersion,
ignoreCertificateValidation,
isMessageBase64Encoded,
mcpProtocolVersion,
message,
Expand Down Expand Up @@ -1212,6 +1241,9 @@ public String toString() {
sb.append(" headers: ").append(toIndentedString(headers)).append("\n");
sb.append(" host: ").append(toIndentedString(host)).append("\n");
sb.append(" httpVersion: ").append(toIndentedString(httpVersion)).append("\n");
sb.append(" ignoreCertificateValidation: ")
.append(toIndentedString(ignoreCertificateValidation))
.append("\n");
sb.append(" isMessageBase64Encoded: ")
.append(toIndentedString(isMessageBase64Encoded))
.append("\n");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
"id": "c206b9cd-771e-14f0-5d18-42a3a48556ce"
"id": "c206b9cd-771e-14f0-5d18-42a3a48556cf"
},
{
"httpRequest": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
"timeToLive": {
"unlimited": true
},
"id": "c206b9cd-771e-14f0-5d18-42a3a48556cf"
"id": "c206b9cd-771e-14f0-5d18-42a3a48556ce"
},
{
"httpRequest": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
"id": "194b15fb-fcae-9b9a-e1a7-0daa19dc9eec"
"id": "194b15fb-fcae-9b9a-e1a7-0daa19dc9eea"
},
{
"httpRequest": {
Expand All @@ -53,7 +53,7 @@
"timeToLive": {
"unlimited": true
},
"id": "ab2123e3-6fb5-0f90-fe98-365e086c9c6f"
"id": "ab2123e3-6fb5-0f90-fe98-365e086c9c6e"
},
{
"httpRequest": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@
"timeToLive": {
"unlimited": true
},
"id": "a3ebb722-60eb-fa89-589a-ff3630e3a2cc"
"id": "a3ebb722-60eb-fa89-589a-ff3630e3a2ce"
}
]
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
"id": "194b15fb-fcae-9b9a-e1a7-0daa19dc9eea"
"id": "194b15fb-fcae-9b9a-e1a7-0daa19dc9eed"
},
{
"httpRequest": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@
"timeToLive": {
"unlimited": true
},
"id": "3d4d0603-9fed-1cc5-8004-086b9b6ef690"
"id": "3d4d0603-9fed-1cc5-8004-086b9b6ef691"
}
]
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@
"timeToLive": {
"unlimited": true
},
"id": "9b33b83c-c8bb-714f-cf71-33ab2f3af9d4"
"id": "9b33b83c-c8bb-714f-cf71-33ab2f3af9d3"
}
]
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@
"timeToLive": {
"unlimited": true
},
"id": "101a55f5-5a26-d616-5fb4-8d0451d83d10"
"id": "101a55f5-5a26-d616-5fb4-8d0451d83d11"
}
]
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@
"timeToLive": {
"unlimited": true
},
"id": "d0ec7736-ef6c-d071-3390-4a5c3a301d10"
"id": "d0ec7736-ef6c-d071-3390-4a5c3a301d11"
}
]
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@
"timeToLive": {
"unlimited": true
},
"id": "d0ec7736-ef6c-d071-3390-4a5c3a301d11"
"id": "d0ec7736-ef6c-d071-3390-4a5c3a301d0f"
}
]
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
"id": "194b15fb-fcae-9b9a-e1a7-0daa19dc9eed"
"id": "194b15fb-fcae-9b9a-e1a7-0daa19dc9eec"
},
{
"httpRequest": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
"id": "79babc38-7a70-5347-c8a6-73b0e7014600"
"id": "79babc38-7a70-5347-c8a6-73b0e70145fe"
},
{
"httpRequest": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
"id": "79babc38-7a70-5347-c8a6-73b0e70145fb"
"id": "79babc38-7a70-5347-c8a6-73b0e70145ec"
},
{
"httpRequest": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
"id": "79babc38-7a70-5347-c8a6-73b0e70145f6"
"id": "79babc38-7a70-5347-c8a6-73b0e70145fb"
},
{
"httpRequest": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
"id": "79babc38-7a70-5347-c8a6-73b0e70145f0"
"id": "79babc38-7a70-5347-c8a6-73b0e7014600"
},
{
"httpRequest": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
"id": "6574cf7e-1c55-24e1-45d2-b92f9fa74d34"
"id": "6574cf7e-1c55-24e1-45d2-b92f9fa74d31"
},
{
"httpRequest": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
"id": "6574cf7e-1c55-24e1-45d2-b92f9fa74d31"
"id": "6574cf7e-1c55-24e1-45d2-b92f9fa74d30"
},
{
"httpRequest": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
"id": "6574cf7e-1c55-24e1-45d2-b92f9fa74d2c"
"id": "6574cf7e-1c55-24e1-45d2-b92f9fa74d34"
},
{
"httpRequest": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
"id": "6574cf7e-1c55-24e1-45d2-b92f9fa74d33"
"id": "6574cf7e-1c55-24e1-45d2-b92f9fa74d2c"
},
{
"httpRequest": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
"id": "516e2b97-25f6-b08c-4d4a-1da22948b330"
"id": "516e2b97-25f6-b08c-4d4a-1da22948b32f"
},
{
"httpRequest": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
"id": "79babc38-7a70-5347-c8a6-73b0e70145f7"
"id": "79babc38-7a70-5347-c8a6-73b0e70145f6"
},
{
"httpRequest": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
"id": "79babc38-7a70-5347-c8a6-73b0e70145f1"
"id": "79babc38-7a70-5347-c8a6-73b0e70145ed"
},
{
"httpRequest": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"timeToLive": {
"unlimited": true
},
"id": "b2bcb392-2d71-be89-5578-460535c541b0"
"id": "b2bcb392-2d71-be89-5578-460535c541af"
},
{
"httpRequest": {
Expand Down Expand Up @@ -48,7 +48,7 @@
"timeToLive": {
"unlimited": true
},
"id": "58d1c8d5-bb10-59b9-aa85-8871f8479221"
"id": "58d1c8d5-bb10-59b9-aa85-8871f847921f"
},
{
"httpRequest": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
"id": "58d1c8d5-bb10-59b9-aa85-8871f847921f"
"id": "58d1c8d5-bb10-59b9-aa85-8871f8479220"
},
{
"httpRequest": {
Expand Down Expand Up @@ -57,6 +57,6 @@
"timeToLive": {
"unlimited": true
},
"id": "58d1c8d5-bb10-59b9-aa85-8871f8479220"
"id": "58d1c8d5-bb10-59b9-aa85-8871f8479221"
}
]
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
"id": "c782b1f3-1b03-d50f-8fcd-12e51226c513"
"id": "c782b1f3-1b03-d50f-8fcd-12e51226c510"
},
{
"httpRequest": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,6 @@
"timeToLive": {
"unlimited": true
},
"id": "e60f404e-4f1f-e719-af9d-8d61a2bd95bf"
"id": "e60f404e-4f1f-e719-af9d-8d61a2bd95be"
}
]
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
"id": "76efebf6-d204-c8e8-5a8c-bd11c0a4ae44"
"id": "76efebf6-d204-c8e8-5a8c-bd11c0a4ae45"
},
{
"httpRequest": {
Expand Down Expand Up @@ -57,7 +57,7 @@
"timeToLive": {
"unlimited": true
},
"id": "76efebf6-d204-c8e8-5a8c-bd11c0a4ae45"
"id": "76efebf6-d204-c8e8-5a8c-bd11c0a4ae46"
},
{
"httpRequest": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
"id": "76efebf6-d204-c8e8-5a8c-bd11c0a4ae48"
"id": "76efebf6-d204-c8e8-5a8c-bd11c0a4ae43"
},
{
"httpRequest": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"timeToLive": {
"unlimited": true
},
"id": "01611a93-5e74-0630-3c51-f707c3b51e7d"
"id": "01611a93-5e74-0630-3c51-f707c3b51e7a"
},
{
"httpRequest": {
Expand Down
Loading
Loading