2020 from datadog_api_client .v1 .model .ip_prefixes_logs import IPPrefixesLogs
2121 from datadog_api_client .v1 .model .ip_prefixes_orchestrator import IPPrefixesOrchestrator
2222 from datadog_api_client .v1 .model .ip_prefixes_process import IPPrefixesProcess
23+ from datadog_api_client .v1 .model .ip_prefixes_remote_configuration import IPPrefixesRemoteConfiguration
2324 from datadog_api_client .v1 .model .ip_prefixes_synthetics import IPPrefixesSynthetics
2425 from datadog_api_client .v1 .model .ip_prefixes_synthetics_private_locations import (
2526 IPPrefixesSyntheticsPrivateLocations ,
@@ -36,6 +37,7 @@ def openapi_types(_):
3637 from datadog_api_client .v1 .model .ip_prefixes_logs import IPPrefixesLogs
3738 from datadog_api_client .v1 .model .ip_prefixes_orchestrator import IPPrefixesOrchestrator
3839 from datadog_api_client .v1 .model .ip_prefixes_process import IPPrefixesProcess
40+ from datadog_api_client .v1 .model .ip_prefixes_remote_configuration import IPPrefixesRemoteConfiguration
3941 from datadog_api_client .v1 .model .ip_prefixes_synthetics import IPPrefixesSynthetics
4042 from datadog_api_client .v1 .model .ip_prefixes_synthetics_private_locations import (
4143 IPPrefixesSyntheticsPrivateLocations ,
@@ -50,6 +52,7 @@ def openapi_types(_):
5052 "modified" : (str ,),
5153 "orchestrator" : (IPPrefixesOrchestrator ,),
5254 "process" : (IPPrefixesProcess ,),
55+ "remote_configuration" : (IPPrefixesRemoteConfiguration ,),
5356 "synthetics" : (IPPrefixesSynthetics ,),
5457 "synthetics_private_locations" : (IPPrefixesSyntheticsPrivateLocations ,),
5558 "version" : (int ,),
@@ -64,6 +67,7 @@ def openapi_types(_):
6467 "modified" : "modified" ,
6568 "orchestrator" : "orchestrator" ,
6669 "process" : "process" ,
70+ "remote_configuration" : "remote-configuration" ,
6771 "synthetics" : "synthetics" ,
6872 "synthetics_private_locations" : "synthetics-private-locations" ,
6973 "version" : "version" ,
@@ -79,6 +83,7 @@ def __init__(
7983 modified : Union [str , UnsetType ] = unset ,
8084 orchestrator : Union [IPPrefixesOrchestrator , UnsetType ] = unset ,
8185 process : Union [IPPrefixesProcess , UnsetType ] = unset ,
86+ remote_configuration : Union [IPPrefixesRemoteConfiguration , UnsetType ] = unset ,
8287 synthetics : Union [IPPrefixesSynthetics , UnsetType ] = unset ,
8388 synthetics_private_locations : Union [IPPrefixesSyntheticsPrivateLocations , UnsetType ] = unset ,
8489 version : Union [int , UnsetType ] = unset ,
@@ -109,6 +114,9 @@ def __init__(
109114 :param process: Available prefix information for the Process endpoints.
110115 :type process: IPPrefixesProcess, optional
111116
117+ :param remote_configuration: Available prefix information for the Remote Configuration endpoints.
118+ :type remote_configuration: IPPrefixesRemoteConfiguration, optional
119+
112120 :param synthetics: Available prefix information for the Synthetics endpoints.
113121 :type synthetics: IPPrefixesSynthetics, optional
114122
@@ -135,6 +143,8 @@ def __init__(
135143 kwargs ["orchestrator" ] = orchestrator
136144 if process is not unset :
137145 kwargs ["process" ] = process
146+ if remote_configuration is not unset :
147+ kwargs ["remote_configuration" ] = remote_configuration
138148 if synthetics is not unset :
139149 kwargs ["synthetics" ] = synthetics
140150 if synthetics_private_locations is not unset :
0 commit comments