gcore 0.9.0__py3-none-any.whl → 0.10.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of gcore might be problematic. Click here for more details.
- gcore/_version.py +1 -1
- gcore/resources/cloud/load_balancers/pools/health_monitors.py +8 -4
- gcore/resources/cloud/load_balancers/pools/members.py +2 -2
- gcore/resources/security/bgp_announces.py +15 -15
- gcore/resources/waap/__init__.py +14 -0
- gcore/resources/waap/custom_page_sets.py +40 -34
- gcore/resources/waap/domains/__init__.py +14 -28
- gcore/resources/waap/domains/advanced_rules.py +5 -8
- gcore/resources/waap/domains/{api_discovery/api_discovery.py → api_discovery.py} +292 -59
- gcore/resources/waap/domains/api_path_groups.py +5 -5
- gcore/resources/waap/domains/api_paths.py +15 -17
- gcore/resources/waap/domains/custom_rules.py +5 -8
- gcore/resources/waap/domains/domains.py +120 -64
- gcore/resources/waap/domains/firewall_rules.py +3 -5
- gcore/resources/waap/domains/insight_silences.py +28 -5
- gcore/resources/waap/domains/insights.py +36 -10
- gcore/resources/waap/domains/{analytics/analytics.py → statistics.py} +514 -213
- gcore/resources/waap/insights.py +233 -0
- gcore/resources/waap/ip_info/__init__.py +33 -0
- gcore/resources/waap/{ip_info.py → ip_info/ip_info.py} +149 -235
- gcore/resources/waap/ip_info/metrics.py +203 -0
- gcore/resources/waap/waap.py +40 -8
- gcore/types/cloud/health_monitor.py +6 -0
- gcore/types/cloud/load_balancer_create_params.py +8 -3
- gcore/types/cloud/load_balancers/pool_create_params.py +8 -3
- gcore/types/cloud/load_balancers/pool_update_params.py +8 -3
- gcore/types/cloud/load_balancers/pools/health_monitor_create_params.py +7 -2
- gcore/types/cloud/load_balancers/pools/member_add_params.py +1 -1
- gcore/types/cloud/region.py +0 -3
- gcore/types/security/__init__.py +1 -1
- gcore/types/security/{bgp_announce_change_params.py → bgp_announce_toggle_params.py} +2 -2
- gcore/types/waap/__init__.py +6 -54
- gcore/types/waap/custom_page_set_create_params.py +121 -14
- gcore/types/waap/custom_page_set_preview_params.py +11 -4
- gcore/types/waap/custom_page_set_update_params.py +122 -15
- gcore/types/waap/domain_list_params.py +1 -3
- gcore/types/waap/domains/__init__.py +28 -18
- gcore/types/waap/domains/advanced_rule_list_params.py +1 -3
- gcore/types/waap/domains/{api_discovery/scan_result_list_params.py → api_discovery_list_scan_results_params.py} +2 -2
- gcore/types/waap/domains/{api_path_group_list_response.py → api_path_group_list.py} +2 -2
- gcore/types/waap/domains/custom_rule_list_params.py +1 -3
- gcore/types/waap/domains/insight_list_params.py +16 -6
- gcore/types/waap/domains/insight_replace_params.py +2 -4
- gcore/types/waap/domains/insight_silence_list_params.py +13 -4
- gcore/types/waap/domains/{analytics_list_ddos_attacks_params.py → statistic_get_ddos_attacks_params.py} +2 -2
- gcore/types/waap/domains/{analytics_list_ddos_info_params.py → statistic_get_ddos_info_params.py} +2 -2
- gcore/types/waap/domains/{analytics_get_event_statistics_params.py → statistic_get_events_aggregated_params.py} +2 -2
- gcore/types/waap/domains/{analytics/request_list_params.py → statistic_get_requests_series_params.py} +27 -5
- gcore/types/waap/domains/{analytics_list_event_traffic_params.py → statistic_get_traffic_series_params.py} +4 -5
- gcore/types/waap/domains/statistic_get_traffic_series_response.py +10 -0
- gcore/types/waap/{waap_advanced_rule.py → domains/waap_advanced_rule.py} +1 -1
- gcore/types/waap/domains/{api_discovery_get_settings_response.py → waap_api_discovery_settings.py} +2 -2
- gcore/types/waap/domains/{api_path_get_response.py → waap_api_path.py} +2 -2
- gcore/types/waap/domains/{api_discovery/scan_result_get_response.py → waap_api_scan_result.py} +3 -3
- gcore/types/waap/{waap_blocked_statistics.py → domains/waap_blocked_statistics.py} +1 -1
- gcore/types/waap/{waap_count_statistics.py → domains/waap_count_statistics.py} +1 -1
- gcore/types/waap/{waap_custom_rule.py → domains/waap_custom_rule.py} +1 -1
- gcore/types/waap/{waap_ddos_attack.py → domains/waap_ddos_attack.py} +1 -1
- gcore/types/waap/{waap_ddos_info.py → domains/waap_ddos_info.py} +1 -1
- gcore/types/waap/{waap_event_statistics.py → domains/waap_event_statistics.py} +1 -1
- gcore/types/waap/{waap_firewall_rule.py → domains/waap_firewall_rule.py} +1 -1
- gcore/types/waap/{waap_insight.py → domains/waap_insight.py} +3 -3
- gcore/types/waap/{waap_insight_silence.py → domains/waap_insight_silence.py} +1 -1
- gcore/types/waap/domains/waap_request_details.py +185 -0
- gcore/types/waap/{waap_request_summary.py → domains/waap_request_summary.py} +1 -1
- gcore/types/waap/domains/{api_discovery_scan_openapi_response.py → waap_task_id.py} +2 -2
- gcore/types/waap/{waap_traffic_metrics.py → domains/waap_traffic_metrics.py} +1 -1
- gcore/types/waap/insight_list_types_params.py +28 -0
- gcore/types/waap/ip_info/__init__.py +6 -0
- gcore/types/waap/{ip_info_get_counts_params.py → ip_info/metric_list_params.py} +2 -2
- gcore/types/waap/{waap_ip_info_counts.py → ip_info/waap_ip_info_counts.py} +1 -1
- gcore/types/waap/{ip_info_get_params.py → ip_info_get_ip_info_params.py} +2 -2
- gcore/types/waap/{waap_ip_info.py → ip_info_get_ip_info_response.py} +2 -2
- gcore/types/waap/ip_info_get_top_urls_response.py +12 -3
- gcore/types/waap/{ip_info_get_top_sessions_params.py → ip_info_get_top_user_sessions_params.py} +2 -2
- gcore/types/waap/{ip_info_get_top_sessions_response.py → ip_info_get_top_user_sessions_response.py} +2 -2
- gcore/types/waap/waap_custom_page_set.py +113 -13
- gcore/types/waap/waap_detailed_domain.py +2 -2
- gcore/types/waap/waap_insight_type.py +33 -0
- gcore/types/waap/waap_rule_set.py +26 -3
- gcore/types/waap/waap_summary_domain.py +2 -2
- {gcore-0.9.0.dist-info → gcore-0.10.0.dist-info}/METADATA +1 -1
- {gcore-0.9.0.dist-info → gcore-0.10.0.dist-info}/RECORD +85 -124
- gcore/resources/waap/domains/analytics/__init__.py +0 -33
- gcore/resources/waap/domains/analytics/requests.py +0 -378
- gcore/resources/waap/domains/api_discovery/__init__.py +0 -33
- gcore/resources/waap/domains/api_discovery/scan_results.py +0 -352
- gcore/resources/waap/domains/policies.py +0 -173
- gcore/types/waap/domains/analytics/__init__.py +0 -5
- gcore/types/waap/domains/analytics_list_event_traffic_response.py +0 -10
- gcore/types/waap/domains/api_discovery/__init__.py +0 -7
- gcore/types/waap/domains/api_discovery/scan_result_list_response.py +0 -29
- gcore/types/waap/domains/api_discovery_update_settings_response.py +0 -36
- gcore/types/waap/domains/api_discovery_upload_openapi_response.py +0 -10
- gcore/types/waap/domains/api_path_create_response.py +0 -50
- gcore/types/waap/domains/api_path_list_response.py +0 -50
- gcore/types/waap/waap_block_csrf_page_data.py +0 -28
- gcore/types/waap/waap_block_csrf_page_data_param.py +0 -28
- gcore/types/waap/waap_block_page_data.py +0 -28
- gcore/types/waap/waap_block_page_data_param.py +0 -28
- gcore/types/waap/waap_captcha_page_data.py +0 -31
- gcore/types/waap/waap_captcha_page_data_param.py +0 -31
- gcore/types/waap/waap_common_tag.py +0 -16
- gcore/types/waap/waap_cookie_disabled_page_data.py +0 -18
- gcore/types/waap/waap_cookie_disabled_page_data_param.py +0 -18
- gcore/types/waap/waap_customer_rule_state.py +0 -7
- gcore/types/waap/waap_domain_policy.py +0 -29
- gcore/types/waap/waap_domain_status.py +0 -7
- gcore/types/waap/waap_handshake_page_data.py +0 -25
- gcore/types/waap/waap_handshake_page_data_param.py +0 -25
- gcore/types/waap/waap_insight_silence_sort_by.py +0 -9
- gcore/types/waap/waap_insight_sort_by.py +0 -20
- gcore/types/waap/waap_insight_status.py +0 -7
- gcore/types/waap/waap_javascript_disabled_page_data.py +0 -18
- gcore/types/waap/waap_javascript_disabled_page_data_param.py +0 -18
- gcore/types/waap/waap_network_details.py +0 -17
- gcore/types/waap/waap_page_type.py +0 -9
- gcore/types/waap/waap_paginated_custom_page_set.py +0 -22
- gcore/types/waap/waap_paginated_ddos_attack.py +0 -22
- gcore/types/waap/waap_paginated_ddos_info.py +0 -22
- gcore/types/waap/waap_paginated_request_summary.py +0 -22
- gcore/types/waap/waap_pattern_matched_tag.py +0 -37
- gcore/types/waap/waap_policy_action.py +0 -7
- gcore/types/waap/waap_request_details.py +0 -92
- gcore/types/waap/waap_request_organization.py +0 -13
- gcore/types/waap/waap_resolution.py +0 -7
- gcore/types/waap/waap_rule_action_type.py +0 -7
- gcore/types/waap/waap_top_url.py +0 -13
- gcore/types/waap/waap_traffic_type.py +0 -28
- gcore/types/waap/waap_user_agent_details.py +0 -40
- {gcore-0.9.0.dist-info → gcore-0.10.0.dist-info}/WHEEL +0 -0
- {gcore-0.9.0.dist-info → gcore-0.10.0.dist-info}/licenses/LICENSE +0 -0
|
@@ -0,0 +1,233 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
from typing import Optional
|
|
6
|
+
from typing_extensions import Literal
|
|
7
|
+
|
|
8
|
+
import httpx
|
|
9
|
+
|
|
10
|
+
from ..._types import NOT_GIVEN, Body, Query, Headers, NotGiven
|
|
11
|
+
from ..._utils import maybe_transform
|
|
12
|
+
from ..._compat import cached_property
|
|
13
|
+
from ..._resource import SyncAPIResource, AsyncAPIResource
|
|
14
|
+
from ..._response import (
|
|
15
|
+
to_raw_response_wrapper,
|
|
16
|
+
to_streamed_response_wrapper,
|
|
17
|
+
async_to_raw_response_wrapper,
|
|
18
|
+
async_to_streamed_response_wrapper,
|
|
19
|
+
)
|
|
20
|
+
from ...pagination import SyncOffsetPage, AsyncOffsetPage
|
|
21
|
+
from ...types.waap import insight_list_types_params
|
|
22
|
+
from ..._base_client import AsyncPaginator, make_request_options
|
|
23
|
+
from ...types.waap.waap_insight_type import WaapInsightType
|
|
24
|
+
|
|
25
|
+
__all__ = ["InsightsResource", "AsyncInsightsResource"]
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
class InsightsResource(SyncAPIResource):
|
|
29
|
+
@cached_property
|
|
30
|
+
def with_raw_response(self) -> InsightsResourceWithRawResponse:
|
|
31
|
+
"""
|
|
32
|
+
This property can be used as a prefix for any HTTP method call to return
|
|
33
|
+
the raw response object instead of the parsed content.
|
|
34
|
+
|
|
35
|
+
For more information, see https://www.github.com/G-Core/gcore-python#accessing-raw-response-data-eg-headers
|
|
36
|
+
"""
|
|
37
|
+
return InsightsResourceWithRawResponse(self)
|
|
38
|
+
|
|
39
|
+
@cached_property
|
|
40
|
+
def with_streaming_response(self) -> InsightsResourceWithStreamingResponse:
|
|
41
|
+
"""
|
|
42
|
+
An alternative to `.with_raw_response` that doesn't eagerly read the response body.
|
|
43
|
+
|
|
44
|
+
For more information, see https://www.github.com/G-Core/gcore-python#with_streaming_response
|
|
45
|
+
"""
|
|
46
|
+
return InsightsResourceWithStreamingResponse(self)
|
|
47
|
+
|
|
48
|
+
def list_types(
|
|
49
|
+
self,
|
|
50
|
+
*,
|
|
51
|
+
insight_frequency: Optional[int] | NotGiven = NOT_GIVEN,
|
|
52
|
+
limit: int | NotGiven = NOT_GIVEN,
|
|
53
|
+
name: Optional[str] | NotGiven = NOT_GIVEN,
|
|
54
|
+
offset: int | NotGiven = NOT_GIVEN,
|
|
55
|
+
ordering: Literal["name", "-name", "slug", "-slug", "insight_frequency", "-insight_frequency"]
|
|
56
|
+
| NotGiven = NOT_GIVEN,
|
|
57
|
+
slug: Optional[str] | NotGiven = NOT_GIVEN,
|
|
58
|
+
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
59
|
+
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
60
|
+
extra_headers: Headers | None = None,
|
|
61
|
+
extra_query: Query | None = None,
|
|
62
|
+
extra_body: Body | None = None,
|
|
63
|
+
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
|
64
|
+
) -> SyncOffsetPage[WaapInsightType]:
|
|
65
|
+
"""
|
|
66
|
+
Insight types are generalized categories that encompass various specific
|
|
67
|
+
occurrences of the same kind.
|
|
68
|
+
|
|
69
|
+
Args:
|
|
70
|
+
insight_frequency: Filter by the frequency of the insight type
|
|
71
|
+
|
|
72
|
+
limit: Number of items to return
|
|
73
|
+
|
|
74
|
+
name: Filter by the name of the insight type
|
|
75
|
+
|
|
76
|
+
offset: Number of items to skip
|
|
77
|
+
|
|
78
|
+
ordering: Sort the response by given field.
|
|
79
|
+
|
|
80
|
+
slug: Filter by the slug of the insight type
|
|
81
|
+
|
|
82
|
+
extra_headers: Send extra headers
|
|
83
|
+
|
|
84
|
+
extra_query: Add additional query parameters to the request
|
|
85
|
+
|
|
86
|
+
extra_body: Add additional JSON properties to the request
|
|
87
|
+
|
|
88
|
+
timeout: Override the client-level default timeout for this request, in seconds
|
|
89
|
+
"""
|
|
90
|
+
return self._get_api_list(
|
|
91
|
+
"/waap/v1/security-insights/types",
|
|
92
|
+
page=SyncOffsetPage[WaapInsightType],
|
|
93
|
+
options=make_request_options(
|
|
94
|
+
extra_headers=extra_headers,
|
|
95
|
+
extra_query=extra_query,
|
|
96
|
+
extra_body=extra_body,
|
|
97
|
+
timeout=timeout,
|
|
98
|
+
query=maybe_transform(
|
|
99
|
+
{
|
|
100
|
+
"insight_frequency": insight_frequency,
|
|
101
|
+
"limit": limit,
|
|
102
|
+
"name": name,
|
|
103
|
+
"offset": offset,
|
|
104
|
+
"ordering": ordering,
|
|
105
|
+
"slug": slug,
|
|
106
|
+
},
|
|
107
|
+
insight_list_types_params.InsightListTypesParams,
|
|
108
|
+
),
|
|
109
|
+
),
|
|
110
|
+
model=WaapInsightType,
|
|
111
|
+
)
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
class AsyncInsightsResource(AsyncAPIResource):
|
|
115
|
+
@cached_property
|
|
116
|
+
def with_raw_response(self) -> AsyncInsightsResourceWithRawResponse:
|
|
117
|
+
"""
|
|
118
|
+
This property can be used as a prefix for any HTTP method call to return
|
|
119
|
+
the raw response object instead of the parsed content.
|
|
120
|
+
|
|
121
|
+
For more information, see https://www.github.com/G-Core/gcore-python#accessing-raw-response-data-eg-headers
|
|
122
|
+
"""
|
|
123
|
+
return AsyncInsightsResourceWithRawResponse(self)
|
|
124
|
+
|
|
125
|
+
@cached_property
|
|
126
|
+
def with_streaming_response(self) -> AsyncInsightsResourceWithStreamingResponse:
|
|
127
|
+
"""
|
|
128
|
+
An alternative to `.with_raw_response` that doesn't eagerly read the response body.
|
|
129
|
+
|
|
130
|
+
For more information, see https://www.github.com/G-Core/gcore-python#with_streaming_response
|
|
131
|
+
"""
|
|
132
|
+
return AsyncInsightsResourceWithStreamingResponse(self)
|
|
133
|
+
|
|
134
|
+
def list_types(
|
|
135
|
+
self,
|
|
136
|
+
*,
|
|
137
|
+
insight_frequency: Optional[int] | NotGiven = NOT_GIVEN,
|
|
138
|
+
limit: int | NotGiven = NOT_GIVEN,
|
|
139
|
+
name: Optional[str] | NotGiven = NOT_GIVEN,
|
|
140
|
+
offset: int | NotGiven = NOT_GIVEN,
|
|
141
|
+
ordering: Literal["name", "-name", "slug", "-slug", "insight_frequency", "-insight_frequency"]
|
|
142
|
+
| NotGiven = NOT_GIVEN,
|
|
143
|
+
slug: Optional[str] | NotGiven = NOT_GIVEN,
|
|
144
|
+
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
145
|
+
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
146
|
+
extra_headers: Headers | None = None,
|
|
147
|
+
extra_query: Query | None = None,
|
|
148
|
+
extra_body: Body | None = None,
|
|
149
|
+
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
|
150
|
+
) -> AsyncPaginator[WaapInsightType, AsyncOffsetPage[WaapInsightType]]:
|
|
151
|
+
"""
|
|
152
|
+
Insight types are generalized categories that encompass various specific
|
|
153
|
+
occurrences of the same kind.
|
|
154
|
+
|
|
155
|
+
Args:
|
|
156
|
+
insight_frequency: Filter by the frequency of the insight type
|
|
157
|
+
|
|
158
|
+
limit: Number of items to return
|
|
159
|
+
|
|
160
|
+
name: Filter by the name of the insight type
|
|
161
|
+
|
|
162
|
+
offset: Number of items to skip
|
|
163
|
+
|
|
164
|
+
ordering: Sort the response by given field.
|
|
165
|
+
|
|
166
|
+
slug: Filter by the slug of the insight type
|
|
167
|
+
|
|
168
|
+
extra_headers: Send extra headers
|
|
169
|
+
|
|
170
|
+
extra_query: Add additional query parameters to the request
|
|
171
|
+
|
|
172
|
+
extra_body: Add additional JSON properties to the request
|
|
173
|
+
|
|
174
|
+
timeout: Override the client-level default timeout for this request, in seconds
|
|
175
|
+
"""
|
|
176
|
+
return self._get_api_list(
|
|
177
|
+
"/waap/v1/security-insights/types",
|
|
178
|
+
page=AsyncOffsetPage[WaapInsightType],
|
|
179
|
+
options=make_request_options(
|
|
180
|
+
extra_headers=extra_headers,
|
|
181
|
+
extra_query=extra_query,
|
|
182
|
+
extra_body=extra_body,
|
|
183
|
+
timeout=timeout,
|
|
184
|
+
query=maybe_transform(
|
|
185
|
+
{
|
|
186
|
+
"insight_frequency": insight_frequency,
|
|
187
|
+
"limit": limit,
|
|
188
|
+
"name": name,
|
|
189
|
+
"offset": offset,
|
|
190
|
+
"ordering": ordering,
|
|
191
|
+
"slug": slug,
|
|
192
|
+
},
|
|
193
|
+
insight_list_types_params.InsightListTypesParams,
|
|
194
|
+
),
|
|
195
|
+
),
|
|
196
|
+
model=WaapInsightType,
|
|
197
|
+
)
|
|
198
|
+
|
|
199
|
+
|
|
200
|
+
class InsightsResourceWithRawResponse:
|
|
201
|
+
def __init__(self, insights: InsightsResource) -> None:
|
|
202
|
+
self._insights = insights
|
|
203
|
+
|
|
204
|
+
self.list_types = to_raw_response_wrapper(
|
|
205
|
+
insights.list_types,
|
|
206
|
+
)
|
|
207
|
+
|
|
208
|
+
|
|
209
|
+
class AsyncInsightsResourceWithRawResponse:
|
|
210
|
+
def __init__(self, insights: AsyncInsightsResource) -> None:
|
|
211
|
+
self._insights = insights
|
|
212
|
+
|
|
213
|
+
self.list_types = async_to_raw_response_wrapper(
|
|
214
|
+
insights.list_types,
|
|
215
|
+
)
|
|
216
|
+
|
|
217
|
+
|
|
218
|
+
class InsightsResourceWithStreamingResponse:
|
|
219
|
+
def __init__(self, insights: InsightsResource) -> None:
|
|
220
|
+
self._insights = insights
|
|
221
|
+
|
|
222
|
+
self.list_types = to_streamed_response_wrapper(
|
|
223
|
+
insights.list_types,
|
|
224
|
+
)
|
|
225
|
+
|
|
226
|
+
|
|
227
|
+
class AsyncInsightsResourceWithStreamingResponse:
|
|
228
|
+
def __init__(self, insights: AsyncInsightsResource) -> None:
|
|
229
|
+
self._insights = insights
|
|
230
|
+
|
|
231
|
+
self.list_types = async_to_streamed_response_wrapper(
|
|
232
|
+
insights.list_types,
|
|
233
|
+
)
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from .ip_info import (
|
|
4
|
+
IPInfoResource,
|
|
5
|
+
AsyncIPInfoResource,
|
|
6
|
+
IPInfoResourceWithRawResponse,
|
|
7
|
+
AsyncIPInfoResourceWithRawResponse,
|
|
8
|
+
IPInfoResourceWithStreamingResponse,
|
|
9
|
+
AsyncIPInfoResourceWithStreamingResponse,
|
|
10
|
+
)
|
|
11
|
+
from .metrics import (
|
|
12
|
+
MetricsResource,
|
|
13
|
+
AsyncMetricsResource,
|
|
14
|
+
MetricsResourceWithRawResponse,
|
|
15
|
+
AsyncMetricsResourceWithRawResponse,
|
|
16
|
+
MetricsResourceWithStreamingResponse,
|
|
17
|
+
AsyncMetricsResourceWithStreamingResponse,
|
|
18
|
+
)
|
|
19
|
+
|
|
20
|
+
__all__ = [
|
|
21
|
+
"MetricsResource",
|
|
22
|
+
"AsyncMetricsResource",
|
|
23
|
+
"MetricsResourceWithRawResponse",
|
|
24
|
+
"AsyncMetricsResourceWithRawResponse",
|
|
25
|
+
"MetricsResourceWithStreamingResponse",
|
|
26
|
+
"AsyncMetricsResourceWithStreamingResponse",
|
|
27
|
+
"IPInfoResource",
|
|
28
|
+
"AsyncIPInfoResource",
|
|
29
|
+
"IPInfoResourceWithRawResponse",
|
|
30
|
+
"AsyncIPInfoResourceWithRawResponse",
|
|
31
|
+
"IPInfoResourceWithStreamingResponse",
|
|
32
|
+
"AsyncIPInfoResourceWithStreamingResponse",
|
|
33
|
+
]
|