gcore 0.6.0__py3-none-any.whl → 0.8.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/_client.py +9 -0
- gcore/_models.py +24 -3
- gcore/_version.py +1 -1
- gcore/pagination.py +101 -63
- gcore/resources/__init__.py +14 -0
- gcore/resources/cloud/__init__.py +28 -0
- gcore/resources/cloud/cloud.py +64 -0
- gcore/resources/cloud/cost_reports.py +811 -0
- gcore/resources/cloud/file_shares/file_shares.py +10 -0
- gcore/resources/cloud/gpu_baremetal_clusters/gpu_baremetal_clusters.py +61 -26
- gcore/resources/cloud/inference/registry_credentials.py +4 -6
- gcore/resources/cloud/usage_reports.py +337 -0
- gcore/resources/iam/users.py +5 -5
- gcore/resources/streaming/__init__.py +159 -0
- gcore/resources/streaming/ai_tasks.py +1288 -0
- gcore/resources/streaming/broadcasts.py +579 -0
- gcore/resources/streaming/directories.py +515 -0
- gcore/resources/streaming/players.py +577 -0
- gcore/resources/streaming/playlists.py +1059 -0
- gcore/resources/streaming/quality_sets.py +331 -0
- gcore/resources/streaming/restreams.py +484 -0
- gcore/resources/streaming/statistics.py +3224 -0
- gcore/resources/streaming/streaming.py +390 -0
- gcore/resources/streaming/streams/__init__.py +33 -0
- gcore/resources/streaming/streams/overlays.py +716 -0
- gcore/resources/streaming/streams/streams.py +1592 -0
- gcore/resources/streaming/videos/__init__.py +33 -0
- gcore/resources/streaming/videos/subtitles.py +623 -0
- gcore/resources/streaming/videos/videos.py +1553 -0
- gcore/resources/waap/ip_info.py +28 -10
- gcore/types/cloud/__init__.py +10 -0
- gcore/types/cloud/cost_report_aggregated.py +865 -0
- gcore/types/cloud/cost_report_aggregated_monthly.py +865 -0
- gcore/types/cloud/cost_report_detailed.py +1343 -0
- gcore/types/cloud/cost_report_get_aggregated_monthly_params.py +394 -0
- gcore/types/cloud/cost_report_get_aggregated_params.py +409 -0
- gcore/types/cloud/cost_report_get_detailed_params.py +435 -0
- gcore/types/cloud/file_share.py +37 -3
- gcore/types/cloud/file_share_create_params.py +16 -0
- gcore/types/cloud/floating_ip.py +0 -9
- gcore/types/cloud/floating_ip_detailed.py +0 -9
- gcore/types/cloud/gpu_baremetal_cluster.py +2 -2
- gcore/types/cloud/gpu_baremetal_cluster_create_params.py +9 -0
- gcore/types/cloud/quota_get_all_response.py +24 -2
- gcore/types/cloud/quota_get_by_region_response.py +24 -2
- gcore/types/cloud/quotas/request_create_params.py +12 -1
- gcore/types/cloud/quotas/request_get_response.py +12 -1
- gcore/types/cloud/quotas/request_list_response.py +12 -1
- gcore/types/cloud/subnet.py +1 -1
- gcore/types/cloud/usage_report.py +1612 -0
- gcore/types/cloud/usage_report_get_params.py +432 -0
- gcore/types/streaming/__init__.py +143 -0
- gcore/types/streaming/ai_contentmoderation_casm.py +39 -0
- gcore/types/streaming/ai_contentmoderation_hardnudity.py +54 -0
- gcore/types/streaming/ai_contentmoderation_nsfw.py +39 -0
- gcore/types/streaming/ai_contentmoderation_softnudity.py +66 -0
- gcore/types/streaming/ai_contentmoderation_sport.py +39 -0
- gcore/types/streaming/ai_contentmoderation_weapon.py +39 -0
- gcore/types/streaming/ai_task.py +205 -0
- gcore/types/streaming/ai_task_cancel_response.py +12 -0
- gcore/types/streaming/ai_task_create_params.py +168 -0
- gcore/types/streaming/ai_task_create_response.py +10 -0
- gcore/types/streaming/ai_task_get_ai_settings_params.py +27 -0
- gcore/types/streaming/ai_task_get_ai_settings_response.py +12 -0
- gcore/types/streaming/ai_task_get_response.py +313 -0
- gcore/types/streaming/ai_task_list_params.py +50 -0
- gcore/types/streaming/broadcast.py +71 -0
- gcore/types/streaming/broadcast_create_params.py +76 -0
- gcore/types/streaming/broadcast_list_params.py +12 -0
- gcore/types/streaming/broadcast_spectators_count.py +12 -0
- gcore/types/streaming/broadcast_update_params.py +76 -0
- gcore/types/streaming/clip.py +78 -0
- gcore/types/streaming/create_video_param.py +214 -0
- gcore/types/streaming/direct_upload_parameters.py +33 -0
- gcore/types/streaming/directories_tree.py +19 -0
- gcore/types/streaming/directory_base.py +31 -0
- gcore/types/streaming/directory_create_params.py +15 -0
- gcore/types/streaming/directory_get_response.py +19 -0
- gcore/types/streaming/directory_item.py +13 -0
- gcore/types/streaming/directory_update_params.py +18 -0
- gcore/types/streaming/directory_video.py +13 -0
- gcore/types/streaming/ffprobes.py +25 -0
- gcore/types/streaming/max_stream_series.py +21 -0
- gcore/types/streaming/meet_series.py +23 -0
- gcore/types/streaming/player.py +114 -0
- gcore/types/streaming/player_create_params.py +18 -0
- gcore/types/streaming/player_list_params.py +12 -0
- gcore/types/streaming/player_param.py +114 -0
- gcore/types/streaming/player_update_params.py +18 -0
- gcore/types/streaming/playlist.py +102 -0
- gcore/types/streaming/playlist_create.py +12 -0
- gcore/types/streaming/playlist_create_params.py +102 -0
- gcore/types/streaming/playlist_list_params.py +12 -0
- gcore/types/streaming/playlist_list_videos_response.py +10 -0
- gcore/types/streaming/playlist_update_params.py +102 -0
- gcore/types/streaming/playlist_video.py +215 -0
- gcore/types/streaming/popular_videos.py +17 -0
- gcore/types/streaming/quality_set_set_default_params.py +23 -0
- gcore/types/streaming/quality_sets.py +57 -0
- gcore/types/streaming/restream.py +37 -0
- gcore/types/streaming/restream_create_params.py +41 -0
- gcore/types/streaming/restream_list_params.py +12 -0
- gcore/types/streaming/restream_update_params.py +41 -0
- gcore/types/streaming/statistic_get_ffprobes_params.py +22 -0
- gcore/types/streaming/statistic_get_live_unique_viewers_params.py +26 -0
- gcore/types/streaming/statistic_get_live_unique_viewers_response.py +25 -0
- gcore/types/streaming/statistic_get_live_watch_time_cdn_params.py +32 -0
- gcore/types/streaming/statistic_get_live_watch_time_total_cdn_params.py +30 -0
- gcore/types/streaming/statistic_get_max_streams_series_params.py +20 -0
- gcore/types/streaming/statistic_get_meet_series_params.py +20 -0
- gcore/types/streaming/statistic_get_popular_videos_params.py +15 -0
- gcore/types/streaming/statistic_get_storage_series_params.py +20 -0
- gcore/types/streaming/statistic_get_stream_series_params.py +20 -0
- gcore/types/streaming/statistic_get_unique_viewers_cdn_params.py +27 -0
- gcore/types/streaming/statistic_get_unique_viewers_params.py +34 -0
- gcore/types/streaming/statistic_get_views_by_browsers_params.py +15 -0
- gcore/types/streaming/statistic_get_views_by_country_params.py +15 -0
- gcore/types/streaming/statistic_get_views_by_hostname_params.py +15 -0
- gcore/types/streaming/statistic_get_views_by_operating_system_params.py +15 -0
- gcore/types/streaming/statistic_get_views_by_referer_params.py +15 -0
- gcore/types/streaming/statistic_get_views_by_region_params.py +15 -0
- gcore/types/streaming/statistic_get_views_heatmap_params.py +21 -0
- gcore/types/streaming/statistic_get_views_params.py +34 -0
- gcore/types/streaming/statistic_get_vod_storage_volume_params.py +17 -0
- gcore/types/streaming/statistic_get_vod_transcoding_duration_params.py +17 -0
- gcore/types/streaming/statistic_get_vod_unique_viewers_cdn_params.py +26 -0
- gcore/types/streaming/statistic_get_vod_watch_time_cdn_params.py +32 -0
- gcore/types/streaming/statistic_get_vod_watch_time_total_cdn_params.py +30 -0
- gcore/types/streaming/statistic_get_vod_watch_time_total_cdn_response.py +22 -0
- gcore/types/streaming/storage_series.py +23 -0
- gcore/types/streaming/stream.py +420 -0
- gcore/types/streaming/stream_create_clip_params.py +48 -0
- gcore/types/streaming/stream_create_params.py +165 -0
- gcore/types/streaming/stream_list_clips_response.py +10 -0
- gcore/types/streaming/stream_list_params.py +18 -0
- gcore/types/streaming/stream_series.py +21 -0
- gcore/types/streaming/stream_start_recording_response.py +76 -0
- gcore/types/streaming/stream_update_params.py +169 -0
- gcore/types/streaming/streams/__init__.py +11 -0
- gcore/types/streaming/streams/overlay.py +43 -0
- gcore/types/streaming/streams/overlay_create_params.py +36 -0
- gcore/types/streaming/streams/overlay_create_response.py +10 -0
- gcore/types/streaming/streams/overlay_list_response.py +10 -0
- gcore/types/streaming/streams/overlay_update_multiple_params.py +39 -0
- gcore/types/streaming/streams/overlay_update_multiple_response.py +10 -0
- gcore/types/streaming/streams/overlay_update_params.py +33 -0
- gcore/types/streaming/subtitle.py +12 -0
- gcore/types/streaming/subtitle_base.py +18 -0
- gcore/types/streaming/subtitle_base_param.py +18 -0
- gcore/types/streaming/unique_viewers.py +35 -0
- gcore/types/streaming/unique_viewers_cdn.py +17 -0
- gcore/types/streaming/video.py +444 -0
- gcore/types/streaming/video_create_multiple_params.py +28 -0
- gcore/types/streaming/video_create_multiple_response.py +10 -0
- gcore/types/streaming/video_create_params.py +13 -0
- gcore/types/streaming/video_create_response.py +10 -0
- gcore/types/streaming/video_list_names_params.py +13 -0
- gcore/types/streaming/video_list_params.py +59 -0
- gcore/types/streaming/video_update_params.py +214 -0
- gcore/types/streaming/videos/__init__.py +7 -0
- gcore/types/streaming/videos/subtitle_create_params.py +17 -0
- gcore/types/streaming/videos/subtitle_list_response.py +10 -0
- gcore/types/streaming/videos/subtitle_update_params.py +20 -0
- gcore/types/streaming/views.py +35 -0
- gcore/types/streaming/views_by_browser.py +17 -0
- gcore/types/streaming/views_by_country.py +19 -0
- gcore/types/streaming/views_by_hostname.py +17 -0
- gcore/types/streaming/views_by_operating_system.py +17 -0
- gcore/types/streaming/views_by_referer.py +17 -0
- gcore/types/streaming/views_by_region.py +19 -0
- gcore/types/streaming/views_heatmap.py +19 -0
- gcore/types/streaming/vod_statistics_series.py +21 -0
- gcore/types/streaming/vod_total_stream_duration_series.py +22 -0
- gcore/types/waap/domains/custom_rule_create_params.py +4 -4
- gcore/types/waap/domains/custom_rule_update_params.py +4 -4
- gcore/types/waap/ip_info_get_blocked_requests_params.py +5 -1
- gcore/types/waap/ip_info_get_counts_params.py +2 -1
- gcore/types/waap/ip_info_get_top_sessions_params.py +5 -1
- gcore/types/waap/ip_info_get_top_urls_params.py +5 -1
- gcore/types/waap/ip_info_get_top_user_agents_params.py +5 -1
- gcore/types/waap/waap_custom_rule.py +4 -4
- {gcore-0.6.0.dist-info → gcore-0.8.0.dist-info}/METADATA +1 -1
- {gcore-0.6.0.dist-info → gcore-0.8.0.dist-info}/RECORD +185 -37
- {gcore-0.6.0.dist-info → gcore-0.8.0.dist-info}/WHEEL +0 -0
- {gcore-0.6.0.dist-info → gcore-0.8.0.dist-info}/licenses/LICENSE +0 -0
|
@@ -21,10 +21,20 @@ class QuotaGetByRegionResponse(BaseModel):
|
|
|
21
21
|
"""Baremetal A100 GPU card count usage"""
|
|
22
22
|
|
|
23
23
|
baremetal_gpu_count_limit: Optional[int] = None
|
|
24
|
-
"""AI GPU bare metal servers
|
|
24
|
+
"""Total number of AI GPU bare metal servers.
|
|
25
|
+
|
|
26
|
+
This field is deprecated and is now always calculated automatically as the sum
|
|
27
|
+
of `baremetal_gpu_a100_count_limit`, `baremetal_gpu_h100_count_limit`,
|
|
28
|
+
`baremetal_gpu_h200_count_limit`, and `baremetal_gpu_l40s_count_limit`.
|
|
29
|
+
"""
|
|
25
30
|
|
|
26
31
|
baremetal_gpu_count_usage: Optional[int] = None
|
|
27
|
-
"""
|
|
32
|
+
"""Baremetal Gpu Count Usage.
|
|
33
|
+
|
|
34
|
+
This field is deprecated and is now always calculated automatically as the sum
|
|
35
|
+
of `baremetal_gpu_a100_count_usage`, `baremetal_gpu_h100_count_usage`,
|
|
36
|
+
`baremetal_gpu_h200_count_usage`, and `baremetal_gpu_l40s_count_usage`.
|
|
37
|
+
"""
|
|
28
38
|
|
|
29
39
|
baremetal_gpu_h100_count_limit: Optional[int] = None
|
|
30
40
|
"""Baremetal H100 GPU card count limit"""
|
|
@@ -32,6 +42,12 @@ class QuotaGetByRegionResponse(BaseModel):
|
|
|
32
42
|
baremetal_gpu_h100_count_usage: Optional[int] = None
|
|
33
43
|
"""Baremetal H100 GPU card count usage"""
|
|
34
44
|
|
|
45
|
+
baremetal_gpu_h200_count_limit: Optional[int] = None
|
|
46
|
+
"""Baremetal H200 GPU card count limit"""
|
|
47
|
+
|
|
48
|
+
baremetal_gpu_h200_count_usage: Optional[int] = None
|
|
49
|
+
"""Baremetal H200 GPU card count usage"""
|
|
50
|
+
|
|
35
51
|
baremetal_gpu_l40s_count_limit: Optional[int] = None
|
|
36
52
|
"""Baremetal L40S GPU card count limit"""
|
|
37
53
|
|
|
@@ -164,6 +180,12 @@ class QuotaGetByRegionResponse(BaseModel):
|
|
|
164
180
|
gpu_virtual_h100_count_usage: Optional[int] = None
|
|
165
181
|
"""Virtual H100 GPU card count usage"""
|
|
166
182
|
|
|
183
|
+
gpu_virtual_h200_count_limit: Optional[int] = None
|
|
184
|
+
"""Virtual H200 GPU card count limit"""
|
|
185
|
+
|
|
186
|
+
gpu_virtual_h200_count_usage: Optional[int] = None
|
|
187
|
+
"""Virtual H200 GPU card count usage"""
|
|
188
|
+
|
|
167
189
|
gpu_virtual_l40s_count_limit: Optional[int] = None
|
|
168
190
|
"""Virtual L40S GPU card count limit"""
|
|
169
191
|
|
|
@@ -50,11 +50,19 @@ class RequestedLimitsRegionalLimit(TypedDict, total=False):
|
|
|
50
50
|
"""Baremetal A100 GPU card count limit"""
|
|
51
51
|
|
|
52
52
|
baremetal_gpu_count_limit: int
|
|
53
|
-
"""AI GPU bare metal servers
|
|
53
|
+
"""Total number of AI GPU bare metal servers.
|
|
54
|
+
|
|
55
|
+
This field is deprecated and is now always calculated automatically as the sum
|
|
56
|
+
of `baremetal_gpu_a100_count_limit`, `baremetal_gpu_h100_count_limit`,
|
|
57
|
+
`baremetal_gpu_h200_count_limit`, and `baremetal_gpu_l40s_count_limit`.
|
|
58
|
+
"""
|
|
54
59
|
|
|
55
60
|
baremetal_gpu_h100_count_limit: int
|
|
56
61
|
"""Baremetal H100 GPU card count limit"""
|
|
57
62
|
|
|
63
|
+
baremetal_gpu_h200_count_limit: int
|
|
64
|
+
"""Baremetal H200 GPU card count limit"""
|
|
65
|
+
|
|
58
66
|
baremetal_gpu_l40s_count_limit: int
|
|
59
67
|
"""Baremetal L40S GPU card count limit"""
|
|
60
68
|
|
|
@@ -121,6 +129,9 @@ class RequestedLimitsRegionalLimit(TypedDict, total=False):
|
|
|
121
129
|
gpu_virtual_h100_count_limit: int
|
|
122
130
|
"""Virtual H100 GPU card count limit"""
|
|
123
131
|
|
|
132
|
+
gpu_virtual_h200_count_limit: int
|
|
133
|
+
"""Virtual H200 GPU card count limit"""
|
|
134
|
+
|
|
124
135
|
gpu_virtual_l40s_count_limit: int
|
|
125
136
|
"""Virtual L40S GPU card count limit"""
|
|
126
137
|
|
|
@@ -39,11 +39,19 @@ class RequestedLimitsRegionalLimit(BaseModel):
|
|
|
39
39
|
"""Baremetal A100 GPU card count limit"""
|
|
40
40
|
|
|
41
41
|
baremetal_gpu_count_limit: Optional[int] = None
|
|
42
|
-
"""AI GPU bare metal servers
|
|
42
|
+
"""Total number of AI GPU bare metal servers.
|
|
43
|
+
|
|
44
|
+
This field is deprecated and is now always calculated automatically as the sum
|
|
45
|
+
of `baremetal_gpu_a100_count_limit`, `baremetal_gpu_h100_count_limit`,
|
|
46
|
+
`baremetal_gpu_h200_count_limit`, and `baremetal_gpu_l40s_count_limit`.
|
|
47
|
+
"""
|
|
43
48
|
|
|
44
49
|
baremetal_gpu_h100_count_limit: Optional[int] = None
|
|
45
50
|
"""Baremetal H100 GPU card count limit"""
|
|
46
51
|
|
|
52
|
+
baremetal_gpu_h200_count_limit: Optional[int] = None
|
|
53
|
+
"""Baremetal H200 GPU card count limit"""
|
|
54
|
+
|
|
47
55
|
baremetal_gpu_l40s_count_limit: Optional[int] = None
|
|
48
56
|
"""Baremetal L40S GPU card count limit"""
|
|
49
57
|
|
|
@@ -110,6 +118,9 @@ class RequestedLimitsRegionalLimit(BaseModel):
|
|
|
110
118
|
gpu_virtual_h100_count_limit: Optional[int] = None
|
|
111
119
|
"""Virtual H100 GPU card count limit"""
|
|
112
120
|
|
|
121
|
+
gpu_virtual_h200_count_limit: Optional[int] = None
|
|
122
|
+
"""Virtual H200 GPU card count limit"""
|
|
123
|
+
|
|
113
124
|
gpu_virtual_l40s_count_limit: Optional[int] = None
|
|
114
125
|
"""Virtual L40S GPU card count limit"""
|
|
115
126
|
|
|
@@ -39,11 +39,19 @@ class RequestedLimitsRegionalLimit(BaseModel):
|
|
|
39
39
|
"""Baremetal A100 GPU card count limit"""
|
|
40
40
|
|
|
41
41
|
baremetal_gpu_count_limit: Optional[int] = None
|
|
42
|
-
"""AI GPU bare metal servers
|
|
42
|
+
"""Total number of AI GPU bare metal servers.
|
|
43
|
+
|
|
44
|
+
This field is deprecated and is now always calculated automatically as the sum
|
|
45
|
+
of `baremetal_gpu_a100_count_limit`, `baremetal_gpu_h100_count_limit`,
|
|
46
|
+
`baremetal_gpu_h200_count_limit`, and `baremetal_gpu_l40s_count_limit`.
|
|
47
|
+
"""
|
|
43
48
|
|
|
44
49
|
baremetal_gpu_h100_count_limit: Optional[int] = None
|
|
45
50
|
"""Baremetal H100 GPU card count limit"""
|
|
46
51
|
|
|
52
|
+
baremetal_gpu_h200_count_limit: Optional[int] = None
|
|
53
|
+
"""Baremetal H200 GPU card count limit"""
|
|
54
|
+
|
|
47
55
|
baremetal_gpu_l40s_count_limit: Optional[int] = None
|
|
48
56
|
"""Baremetal L40S GPU card count limit"""
|
|
49
57
|
|
|
@@ -110,6 +118,9 @@ class RequestedLimitsRegionalLimit(BaseModel):
|
|
|
110
118
|
gpu_virtual_h100_count_limit: Optional[int] = None
|
|
111
119
|
"""Virtual H100 GPU card count limit"""
|
|
112
120
|
|
|
121
|
+
gpu_virtual_h200_count_limit: Optional[int] = None
|
|
122
|
+
"""Virtual H200 GPU card count limit"""
|
|
123
|
+
|
|
113
124
|
gpu_virtual_l40s_count_limit: Optional[int] = None
|
|
114
125
|
"""Virtual L40S GPU card count limit"""
|
|
115
126
|
|
gcore/types/cloud/subnet.py
CHANGED
|
@@ -71,7 +71,7 @@ class Subnet(BaseModel):
|
|
|
71
71
|
"""
|
|
72
72
|
|
|
73
73
|
has_router: Optional[bool] = None
|
|
74
|
-
"""
|
|
74
|
+
"""Deprecated. Always returns `false`."""
|
|
75
75
|
|
|
76
76
|
host_routes: Optional[List[Route]] = None
|
|
77
77
|
"""List of custom static routes to advertise via DHCP."""
|