1717 from datadog_api_client .v1 .model .ip_prefixes_agents import IPPrefixesAgents
1818 from datadog_api_client .v1 .model .ip_prefixes_api import IPPrefixesAPI
1919 from datadog_api_client .v1 .model .ip_prefixes_apm import IPPrefixesAPM
20+ from datadog_api_client .v1 .model .ip_prefixes_global import IPPrefixesGlobal
2021 from datadog_api_client .v1 .model .ip_prefixes_logs import IPPrefixesLogs
2122 from datadog_api_client .v1 .model .ip_prefixes_orchestrator import IPPrefixesOrchestrator
2223 from datadog_api_client .v1 .model .ip_prefixes_process import IPPrefixesProcess
@@ -34,6 +35,7 @@ def openapi_types(_):
3435 from datadog_api_client .v1 .model .ip_prefixes_agents import IPPrefixesAgents
3536 from datadog_api_client .v1 .model .ip_prefixes_api import IPPrefixesAPI
3637 from datadog_api_client .v1 .model .ip_prefixes_apm import IPPrefixesAPM
38+ from datadog_api_client .v1 .model .ip_prefixes_global import IPPrefixesGlobal
3739 from datadog_api_client .v1 .model .ip_prefixes_logs import IPPrefixesLogs
3840 from datadog_api_client .v1 .model .ip_prefixes_orchestrator import IPPrefixesOrchestrator
3941 from datadog_api_client .v1 .model .ip_prefixes_process import IPPrefixesProcess
@@ -48,6 +50,7 @@ def openapi_types(_):
4850 "agents" : (IPPrefixesAgents ,),
4951 "api" : (IPPrefixesAPI ,),
5052 "apm" : (IPPrefixesAPM ,),
53+ "_global" : (IPPrefixesGlobal ,),
5154 "logs" : (IPPrefixesLogs ,),
5255 "modified" : (str ,),
5356 "orchestrator" : (IPPrefixesOrchestrator ,),
@@ -63,6 +66,7 @@ def openapi_types(_):
6366 "agents" : "agents" ,
6467 "api" : "api" ,
6568 "apm" : "apm" ,
69+ "_global" : "global" ,
6670 "logs" : "logs" ,
6771 "modified" : "modified" ,
6872 "orchestrator" : "orchestrator" ,
@@ -79,6 +83,7 @@ def __init__(
7983 agents : Union [IPPrefixesAgents , UnsetType ] = unset ,
8084 api : Union [IPPrefixesAPI , UnsetType ] = unset ,
8185 apm : Union [IPPrefixesAPM , UnsetType ] = unset ,
86+ _global : Union [IPPrefixesGlobal , UnsetType ] = unset ,
8287 logs : Union [IPPrefixesLogs , UnsetType ] = unset ,
8388 modified : Union [str , UnsetType ] = unset ,
8489 orchestrator : Union [IPPrefixesOrchestrator , UnsetType ] = unset ,
@@ -102,6 +107,9 @@ def __init__(
102107 :param apm: Available prefix information for the APM endpoints.
103108 :type apm: IPPrefixesAPM, optional
104109
110+ :param _global: Available prefix information for all Datadog endpoints.
111+ :type _global: IPPrefixesGlobal, optional
112+
105113 :param logs: Available prefix information for the Logs endpoints.
106114 :type logs: IPPrefixesLogs, optional
107115
@@ -135,6 +143,8 @@ def __init__(
135143 kwargs ["api" ] = api
136144 if apm is not unset :
137145 kwargs ["apm" ] = apm
146+ if _global is not unset :
147+ kwargs ["_global" ] = _global
138148 if logs is not unset :
139149 kwargs ["logs" ] = logs
140150 if modified is not unset :
0 commit comments