@@ -113,7 +113,9 @@ def update(
113
113
* ,
114
114
account_id : str ,
115
115
auto_install : bool | NotGiven = NOT_GIVEN ,
116
+ enabled : bool | NotGiven = NOT_GIVEN ,
116
117
host : str | NotGiven = NOT_GIVEN ,
118
+ lite : bool | NotGiven = NOT_GIVEN ,
117
119
zone_tag : str | NotGiven = NOT_GIVEN ,
118
120
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
119
121
# The extra values given here take precedence over values defined on the client or passed to this method.
@@ -133,8 +135,14 @@ def update(
133
135
auto_install: If enabled, the JavaScript snippet is automatically injected for orange-clouded
134
136
sites.
135
137
138
+ enabled: Enables or disables RUM. This option can be used only when auto_install is set
139
+ to true.
140
+
136
141
host: The hostname to use for gray-clouded sites.
137
142
143
+ lite: If enabled, the JavaScript snippet will not be injected for visitors from the
144
+ EU.
145
+
138
146
zone_tag: The zone identifier.
139
147
140
148
extra_headers: Send extra headers
@@ -154,7 +162,9 @@ def update(
154
162
body = maybe_transform (
155
163
{
156
164
"auto_install" : auto_install ,
165
+ "enabled" : enabled ,
157
166
"host" : host ,
167
+ "lite" : lite ,
158
168
"zone_tag" : zone_tag ,
159
169
},
160
170
site_info_update_params .SiteInfoUpdateParams ,
@@ -397,7 +407,9 @@ async def update(
397
407
* ,
398
408
account_id : str ,
399
409
auto_install : bool | NotGiven = NOT_GIVEN ,
410
+ enabled : bool | NotGiven = NOT_GIVEN ,
400
411
host : str | NotGiven = NOT_GIVEN ,
412
+ lite : bool | NotGiven = NOT_GIVEN ,
401
413
zone_tag : str | NotGiven = NOT_GIVEN ,
402
414
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
403
415
# The extra values given here take precedence over values defined on the client or passed to this method.
@@ -417,8 +429,14 @@ async def update(
417
429
auto_install: If enabled, the JavaScript snippet is automatically injected for orange-clouded
418
430
sites.
419
431
432
+ enabled: Enables or disables RUM. This option can be used only when auto_install is set
433
+ to true.
434
+
420
435
host: The hostname to use for gray-clouded sites.
421
436
437
+ lite: If enabled, the JavaScript snippet will not be injected for visitors from the
438
+ EU.
439
+
422
440
zone_tag: The zone identifier.
423
441
424
442
extra_headers: Send extra headers
@@ -438,7 +456,9 @@ async def update(
438
456
body = await async_maybe_transform (
439
457
{
440
458
"auto_install" : auto_install ,
459
+ "enabled" : enabled ,
441
460
"host" : host ,
461
+ "lite" : lite ,
442
462
"zone_tag" : zone_tag ,
443
463
},
444
464
site_info_update_params .SiteInfoUpdateParams ,
0 commit comments