@@ -61,6 +61,7 @@ def openapi_types(_):
6161 "call_type" : (SyntheticsTestCallType ,),
6262 "certificate" : (SyntheticsTestRequestCertificate ,),
6363 "certificate_domains" : ([str ],),
64+ "check_certificate_revocation" : (bool ,),
6465 "compressed_json_descriptor" : (str ,),
6566 "compressed_proto_file" : (str ,),
6667 "dns_server" : (str ,),
@@ -70,6 +71,7 @@ def openapi_types(_):
7071 "headers" : (SyntheticsTestHeaders ,),
7172 "host" : (str ,),
7273 "http_version" : (SyntheticsTestOptionsHTTPVersion ,),
74+ "is_message_base64_encoded" : (bool ,),
7375 "message" : (str ,),
7476 "metadata" : (SyntheticsTestMetadata ,),
7577 "method" : (str ,),
@@ -94,6 +96,7 @@ def openapi_types(_):
9496 "call_type" : "callType" ,
9597 "certificate" : "certificate" ,
9698 "certificate_domains" : "certificateDomains" ,
99+ "check_certificate_revocation" : "checkCertificateRevocation" ,
97100 "compressed_json_descriptor" : "compressedJsonDescriptor" ,
98101 "compressed_proto_file" : "compressedProtoFile" ,
99102 "dns_server" : "dnsServer" ,
@@ -103,6 +106,7 @@ def openapi_types(_):
103106 "headers" : "headers" ,
104107 "host" : "host" ,
105108 "http_version" : "httpVersion" ,
109+ "is_message_base64_encoded" : "isMessageBase64Encoded" ,
106110 "message" : "message" ,
107111 "metadata" : "metadata" ,
108112 "method" : "method" ,
@@ -137,6 +141,7 @@ def __init__(
137141 call_type : Union [SyntheticsTestCallType , UnsetType ] = unset ,
138142 certificate : Union [SyntheticsTestRequestCertificate , UnsetType ] = unset ,
139143 certificate_domains : Union [List [str ], UnsetType ] = unset ,
144+ check_certificate_revocation : Union [bool , UnsetType ] = unset ,
140145 compressed_json_descriptor : Union [str , UnsetType ] = unset ,
141146 compressed_proto_file : Union [str , UnsetType ] = unset ,
142147 dns_server : Union [str , UnsetType ] = unset ,
@@ -146,6 +151,7 @@ def __init__(
146151 headers : Union [SyntheticsTestHeaders , UnsetType ] = unset ,
147152 host : Union [str , UnsetType ] = unset ,
148153 http_version : Union [SyntheticsTestOptionsHTTPVersion , UnsetType ] = unset ,
154+ is_message_base64_encoded : Union [bool , UnsetType ] = unset ,
149155 message : Union [str , UnsetType ] = unset ,
150156 metadata : Union [SyntheticsTestMetadata , UnsetType ] = unset ,
151157 method : Union [str , UnsetType ] = unset ,
@@ -186,6 +192,9 @@ def __init__(
186192 :param certificate_domains: By default, the client certificate is applied on the domain of the starting URL for browser tests. If you want your client certificate to be applied on other domains instead, add them in ``certificateDomains``.
187193 :type certificate_domains: [str], optional
188194
195+ :param check_certificate_revocation: Check for certificate revocation.
196+ :type check_certificate_revocation: bool, optional
197+
189198 :param compressed_json_descriptor: A protobuf JSON descriptor that needs to be gzipped first then base64 encoded.
190199 :type compressed_json_descriptor: str, optional
191200
@@ -213,6 +222,9 @@ def __init__(
213222 :param http_version: HTTP version to use for a Synthetic test.
214223 :type http_version: SyntheticsTestOptionsHTTPVersion, optional
215224
225+ :param is_message_base64_encoded: Whether the message is base64 encoded.
226+ :type is_message_base64_encoded: bool, optional
227+
216228 :param message: Message to send for UDP or WebSocket tests.
217229 :type message: str, optional
218230
@@ -271,6 +283,8 @@ def __init__(
271283 kwargs ["certificate" ] = certificate
272284 if certificate_domains is not unset :
273285 kwargs ["certificate_domains" ] = certificate_domains
286+ if check_certificate_revocation is not unset :
287+ kwargs ["check_certificate_revocation" ] = check_certificate_revocation
274288 if compressed_json_descriptor is not unset :
275289 kwargs ["compressed_json_descriptor" ] = compressed_json_descriptor
276290 if compressed_proto_file is not unset :
@@ -289,6 +303,8 @@ def __init__(
289303 kwargs ["host" ] = host
290304 if http_version is not unset :
291305 kwargs ["http_version" ] = http_version
306+ if is_message_base64_encoded is not unset :
307+ kwargs ["is_message_base64_encoded" ] = is_message_base64_encoded
292308 if message is not unset :
293309 kwargs ["message" ] = message
294310 if metadata is not unset :
0 commit comments