20
20
from datadog_api_client .v1 .model .ip_prefixes_logs import IPPrefixesLogs
21
21
from datadog_api_client .v1 .model .ip_prefixes_orchestrator import IPPrefixesOrchestrator
22
22
from datadog_api_client .v1 .model .ip_prefixes_process import IPPrefixesProcess
23
+ from datadog_api_client .v1 .model .ip_prefixes_remote_configuration import IPPrefixesRemoteConfiguration
23
24
from datadog_api_client .v1 .model .ip_prefixes_synthetics import IPPrefixesSynthetics
24
25
from datadog_api_client .v1 .model .ip_prefixes_synthetics_private_locations import (
25
26
IPPrefixesSyntheticsPrivateLocations ,
@@ -36,6 +37,7 @@ def openapi_types(_):
36
37
from datadog_api_client .v1 .model .ip_prefixes_logs import IPPrefixesLogs
37
38
from datadog_api_client .v1 .model .ip_prefixes_orchestrator import IPPrefixesOrchestrator
38
39
from datadog_api_client .v1 .model .ip_prefixes_process import IPPrefixesProcess
40
+ from datadog_api_client .v1 .model .ip_prefixes_remote_configuration import IPPrefixesRemoteConfiguration
39
41
from datadog_api_client .v1 .model .ip_prefixes_synthetics import IPPrefixesSynthetics
40
42
from datadog_api_client .v1 .model .ip_prefixes_synthetics_private_locations import (
41
43
IPPrefixesSyntheticsPrivateLocations ,
@@ -50,6 +52,7 @@ def openapi_types(_):
50
52
"modified" : (str ,),
51
53
"orchestrator" : (IPPrefixesOrchestrator ,),
52
54
"process" : (IPPrefixesProcess ,),
55
+ "remote_configuration" : (IPPrefixesRemoteConfiguration ,),
53
56
"synthetics" : (IPPrefixesSynthetics ,),
54
57
"synthetics_private_locations" : (IPPrefixesSyntheticsPrivateLocations ,),
55
58
"version" : (int ,),
@@ -64,6 +67,7 @@ def openapi_types(_):
64
67
"modified" : "modified" ,
65
68
"orchestrator" : "orchestrator" ,
66
69
"process" : "process" ,
70
+ "remote_configuration" : "remote-configuration" ,
67
71
"synthetics" : "synthetics" ,
68
72
"synthetics_private_locations" : "synthetics-private-locations" ,
69
73
"version" : "version" ,
@@ -79,6 +83,7 @@ def __init__(
79
83
modified : Union [str , UnsetType ] = unset ,
80
84
orchestrator : Union [IPPrefixesOrchestrator , UnsetType ] = unset ,
81
85
process : Union [IPPrefixesProcess , UnsetType ] = unset ,
86
+ remote_configuration : Union [IPPrefixesRemoteConfiguration , UnsetType ] = unset ,
82
87
synthetics : Union [IPPrefixesSynthetics , UnsetType ] = unset ,
83
88
synthetics_private_locations : Union [IPPrefixesSyntheticsPrivateLocations , UnsetType ] = unset ,
84
89
version : Union [int , UnsetType ] = unset ,
@@ -109,6 +114,9 @@ def __init__(
109
114
:param process: Available prefix information for the Process endpoints.
110
115
:type process: IPPrefixesProcess, optional
111
116
117
+ :param remote_configuration: Available prefix information for the Remote Configuration endpoints.
118
+ :type remote_configuration: IPPrefixesRemoteConfiguration, optional
119
+
112
120
:param synthetics: Available prefix information for the Synthetics endpoints.
113
121
:type synthetics: IPPrefixesSynthetics, optional
114
122
@@ -135,6 +143,8 @@ def __init__(
135
143
kwargs ["orchestrator" ] = orchestrator
136
144
if process is not unset :
137
145
kwargs ["process" ] = process
146
+ if remote_configuration is not unset :
147
+ kwargs ["remote_configuration" ] = remote_configuration
138
148
if synthetics is not unset :
139
149
kwargs ["synthetics" ] = synthetics
140
150
if synthetics_private_locations is not unset :
0 commit comments