Skip to content
Open
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
4 changes: 3 additions & 1 deletion .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17622,8 +17622,10 @@ components:
type: string
type: object
SyntheticsRestrictedRoles:
deprecated: true
description: A list of role identifiers that can be pulled from the Roles API,
for restricting read and write access.
for restricting read and write access. This field is deprecated, use the restriction
policies API to manage permissions.
example:
- xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
items:
Expand Down
4 changes: 3 additions & 1 deletion .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55280,8 +55280,10 @@ components:
type: string
type: object
SyntheticsRestrictedRoles:
deprecated: true
description: A list of role identifiers that can be pulled from the Roles API,
for restricting read and write access.
for restricting read and write access. This field is deprecated, use the restriction
policies API to manage permissions.
example:
- xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
items:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def __init__(self_, restricted_roles: Union[SyntheticsRestrictedRoles, UnsetType
"""
Attributes of the global variable.

:param restricted_roles: A list of role identifiers that can be pulled from the Roles API, for restricting read and write access.
:param restricted_roles: A list of role identifiers that can be pulled from the Roles API, for restricting read and write access. This field is deprecated, use the restriction policies API to manage permissions. **Deprecated**.
:type restricted_roles: SyntheticsRestrictedRoles, optional
"""
if restricted_roles is not unset:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ def __init__(
:param no_screenshot: A boolean set to not take a screenshot for the step.
:type no_screenshot: bool, optional

:param restricted_roles: A list of role identifiers that can be pulled from the Roles API, for restricting read and write access.
:param restricted_roles: A list of role identifiers that can be pulled from the Roles API, for restricting read and write access. This field is deprecated, use the restriction policies API to manage permissions. **Deprecated**.
:type restricted_roles: SyntheticsRestrictedRoles, optional

:param retry: Object describing the retry strategy to apply to a Synthetic test.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def __init__(self_, restricted_roles: Union[SyntheticsRestrictedRoles, UnsetType
"""
Object containing metadata about the private location.

:param restricted_roles: A list of role identifiers that can be pulled from the Roles API, for restricting read and write access.
:param restricted_roles: A list of role identifiers that can be pulled from the Roles API, for restricting read and write access. This field is deprecated, use the restriction policies API to manage permissions. **Deprecated**.
:type restricted_roles: SyntheticsRestrictedRoles, optional
"""
if restricted_roles is not unset:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

class SyntheticsRestrictedRoles(ModelSimple):
"""
A list of role identifiers that can be pulled from the Roles API, for restricting read and write access.
A list of role identifiers that can be pulled from the Roles API, for restricting read and write access. This field is deprecated, use the restriction policies API to manage permissions.


:type value: [str]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ def __init__(
:param no_screenshot: Prevents saving screenshots of the steps.
:type no_screenshot: bool, optional

:param restricted_roles: A list of role identifiers that can be pulled from the Roles API, for restricting read and write access.
:param restricted_roles: A list of role identifiers that can be pulled from the Roles API, for restricting read and write access. This field is deprecated, use the restriction policies API to manage permissions. **Deprecated**.
:type restricted_roles: SyntheticsRestrictedRoles, optional

:param retry: Object describing the retry strategy to apply to a Synthetic test.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def __init__(self_, restricted_roles: Union[List[str], UnsetType] = unset, **kwa
"""
Attributes of the global variable.

:param restricted_roles: A list of role identifiers that can be pulled from the Roles API, for restricting read and write access.
:param restricted_roles: A list of role identifiers that can be pulled from the Roles API, for restricting read and write access. This field is deprecated, use the restriction policies API to manage permissions. **Deprecated**.
:type restricted_roles: [str], optional
"""
if restricted_roles is not unset:
Expand Down
Loading