@@ -1181,7 +1181,6 @@ components:
1181
1181
readOnly: true
1182
1182
type: string
1183
1183
is_read_only:
1184
- default: false
1185
1184
deprecated: true
1186
1185
description: 'Whether this dashboard is read-only. If True, only the author
1187
1186
and admins can make changes to it.
@@ -14222,8 +14221,8 @@ components:
14222
14221
operator:
14223
14222
$ref: '#/components/schemas/SyntheticsAssertionBodyHashOperator'
14224
14223
target:
14224
+ $ref: '#/components/schemas/SyntheticsAssertionTargetValue'
14225
14225
description: Value used by the operator.
14226
- example: 123456
14227
14226
type:
14228
14227
$ref: '#/components/schemas/SyntheticsAssertionBodyHashType'
14229
14228
required:
@@ -14279,6 +14278,7 @@ components:
14279
14278
description: The specific operator to use on the path.
14280
14279
type: string
14281
14280
targetValue:
14281
+ $ref: '#/components/schemas/SyntheticsAssertionTargetValue'
14282
14282
description: The path target value to compare to.
14283
14283
type: object
14284
14284
SyntheticsAssertionJSONSchemaMetaSchema:
@@ -14386,8 +14386,8 @@ components:
14386
14386
description: The associated assertion property.
14387
14387
type: string
14388
14388
target:
14389
+ $ref: '#/components/schemas/SyntheticsAssertionTargetValue'
14389
14390
description: Value used by the operator.
14390
- example: 123456
14391
14391
timingsScope:
14392
14392
$ref: '#/components/schemas/SyntheticsAssertionTimingsScope'
14393
14393
type:
@@ -14397,6 +14397,20 @@ components:
14397
14397
- operator
14398
14398
- target
14399
14399
type: object
14400
+ SyntheticsAssertionTargetValue:
14401
+ description: Value used by the operator in assertions. Can be either a number
14402
+ or string.
14403
+ oneOf:
14404
+ - $ref: '#/components/schemas/SyntheticsAssertionTargetValueNumber'
14405
+ - $ref: '#/components/schemas/SyntheticsAssertionTargetValueString'
14406
+ SyntheticsAssertionTargetValueNumber:
14407
+ description: Numeric value used by the operator in assertions.
14408
+ format: double
14409
+ type: number
14410
+ SyntheticsAssertionTargetValueString:
14411
+ description: String value used by the operator in assertions. Supports templated
14412
+ variables.
14413
+ type: string
14400
14414
SyntheticsAssertionTimingsScope:
14401
14415
description: Timings scope for response time assertions.
14402
14416
enum:
@@ -14481,6 +14495,7 @@ components:
14481
14495
description: The specific operator to use on the path.
14482
14496
type: string
14483
14497
targetValue:
14498
+ $ref: '#/components/schemas/SyntheticsAssertionTargetValue'
14484
14499
description: The path target value to compare to.
14485
14500
xPath:
14486
14501
description: The X path to assert.
@@ -24054,10 +24069,11 @@ components:
24054
24069
ci_visibility_pipelines_write: Create CI Visibility pipeline spans using
24055
24070
the API.
24056
24071
ci_visibility_read: View CI Visibility.
24057
- cloud_cost_management_read: View Cloud Cost pages. This does not restrict
24058
- access to the cloud cost data source in dashboards and notebooks.
24072
+ cloud_cost_management_read: View Cloud Cost pages and the cloud cost data
24073
+ source in dashboards and notebooks. For more details, see the Cloud
24074
+ Cost Management docs.
24059
24075
cloud_cost_management_write: Configure cloud cost accounts and global
24060
- customizations.
24076
+ customizations. For more details, see the Cloud Cost Management docs.
24061
24077
code_analysis_read: View Code Analysis.
24062
24078
continuous_profiler_pgo_read: Read and query Continuous Profiler data
24063
24079
for Profile-Guided Optimization (PGO).
@@ -24086,7 +24102,7 @@ components:
24086
24102
an organization. Mute and unmute monitors. The ability to write monitors
24087
24103
is not required to set downtimes.
24088
24104
monitors_read: View monitors.
24089
- monitors_write: Edit and delete individual monitors.
24105
+ monitors_write: Edit, delete, and resolve individual monitors.
24090
24106
org_management: Edit org configurations, including authentication and
24091
24107
certain security preferences such as configuring SAML, renaming an org,
24092
24108
configuring allowed login methods, creating child orgs, subscribing
0 commit comments