-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathsynthetics_private_location_metadata.py
More file actions
42 lines (32 loc) · 1.51 KB
/
synthetics_private_location_metadata.py
File metadata and controls
42 lines (32 loc) · 1.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
# This product includes software developed at Datadog (https://www.datadoghq.com/).
# Copyright 2019-Present Datadog, Inc.
from __future__ import annotations
from typing import Union, TYPE_CHECKING
from datadog_api_client.model_utils import (
ModelNormal,
cached_property,
unset,
UnsetType,
)
if TYPE_CHECKING:
from datadog_api_client.v1.model.synthetics_restricted_roles import SyntheticsRestrictedRoles
class SyntheticsPrivateLocationMetadata(ModelNormal):
@cached_property
def openapi_types(_):
from datadog_api_client.v1.model.synthetics_restricted_roles import SyntheticsRestrictedRoles
return {
"restricted_roles": (SyntheticsRestrictedRoles,),
}
attribute_map = {
"restricted_roles": "restricted_roles",
}
def __init__(self_, restricted_roles: Union[SyntheticsRestrictedRoles, UnsetType] = unset, **kwargs):
"""
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. This field is deprecated. Use the restriction policies API to manage permissions. **Deprecated**.
:type restricted_roles: SyntheticsRestrictedRoles, optional
"""
if restricted_roles is not unset:
kwargs["restricted_roles"] = restricted_roles
super().__init__(kwargs)