@@ -1181,7 +1181,6 @@ components:
11811181 readOnly: true
11821182 type: string
11831183 is_read_only:
1184- default: false
11851184 deprecated: true
11861185 description: 'Whether this dashboard is read-only. If True, only the author
11871186 and admins can make changes to it.
@@ -14222,8 +14221,8 @@ components:
1422214221 operator:
1422314222 $ref: '#/components/schemas/SyntheticsAssertionBodyHashOperator'
1422414223 target:
14224+ $ref: '#/components/schemas/SyntheticsAssertionTargetValue'
1422514225 description: Value used by the operator.
14226- example: 123456
1422714226 type:
1422814227 $ref: '#/components/schemas/SyntheticsAssertionBodyHashType'
1422914228 required:
@@ -14279,6 +14278,7 @@ components:
1427914278 description: The specific operator to use on the path.
1428014279 type: string
1428114280 targetValue:
14281+ $ref: '#/components/schemas/SyntheticsAssertionTargetValue'
1428214282 description: The path target value to compare to.
1428314283 type: object
1428414284 SyntheticsAssertionJSONSchemaMetaSchema:
@@ -14386,8 +14386,8 @@ components:
1438614386 description: The associated assertion property.
1438714387 type: string
1438814388 target:
14389+ $ref: '#/components/schemas/SyntheticsAssertionTargetValue'
1438914390 description: Value used by the operator.
14390- example: 123456
1439114391 timingsScope:
1439214392 $ref: '#/components/schemas/SyntheticsAssertionTimingsScope'
1439314393 type:
@@ -14397,6 +14397,20 @@ components:
1439714397 - operator
1439814398 - target
1439914399 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
1440014414 SyntheticsAssertionTimingsScope:
1440114415 description: Timings scope for response time assertions.
1440214416 enum:
@@ -14481,6 +14495,7 @@ components:
1448114495 description: The specific operator to use on the path.
1448214496 type: string
1448314497 targetValue:
14498+ $ref: '#/components/schemas/SyntheticsAssertionTargetValue'
1448414499 description: The path target value to compare to.
1448514500 xPath:
1448614501 description: The X path to assert.
@@ -24054,10 +24069,11 @@ components:
2405424069 ci_visibility_pipelines_write: Create CI Visibility pipeline spans using
2405524070 the API.
2405624071 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.
2405924075 cloud_cost_management_write: Configure cloud cost accounts and global
24060- customizations.
24076+ customizations. For more details, see the Cloud Cost Management docs.
2406124077 code_analysis_read: View Code Analysis.
2406224078 continuous_profiler_pgo_read: Read and query Continuous Profiler data
2406324079 for Profile-Guided Optimization (PGO).
@@ -24086,7 +24102,7 @@ components:
2408624102 an organization. Mute and unmute monitors. The ability to write monitors
2408724103 is not required to set downtimes.
2408824104 monitors_read: View monitors.
24089- monitors_write: Edit and delete individual monitors.
24105+ monitors_write: Edit, delete, and resolve individual monitors.
2409024106 org_management: Edit org configurations, including authentication and
2409124107 certain security preferences such as configuring SAML, renaming an org,
2409224108 configuring allowed login methods, creating child orgs, subscribing
0 commit comments