gcore 0.5.0__py3-none-any.whl → 0.6.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/__init__.py +14 -0
- gcore/resources/cloud/audit_logs.py +480 -0
- gcore/resources/cloud/cloud.py +32 -0
- gcore/resources/cloud/file_shares/file_shares.py +64 -9
- gcore/resources/cloud/inference/__init__.py +14 -0
- gcore/resources/cloud/inference/api_keys.py +621 -0
- gcore/resources/cloud/inference/inference.py +32 -0
- gcore/resources/cloud/load_balancers/pools/members.py +22 -6
- gcore/types/cloud/__init__.py +2 -0
- gcore/types/cloud/audit_log_entry.py +254 -0
- gcore/types/cloud/audit_log_list_params.py +158 -0
- gcore/types/cloud/file_share_update_params.py +29 -3
- gcore/types/cloud/inference/__init__.py +5 -0
- gcore/types/cloud/inference/api_key_create_params.py +21 -0
- gcore/types/cloud/inference/api_key_list_params.py +21 -0
- gcore/types/cloud/inference/api_key_update_params.py +16 -0
- gcore/types/cloud/inference/inference_api_key.py +24 -0
- gcore/types/cloud/inference/inference_api_key_create.py +27 -0
- gcore/types/cloud/load_balancer_create_params.py +14 -3
- gcore/types/cloud/load_balancers/pool_create_params.py +14 -3
- gcore/types/cloud/load_balancers/pool_update_params.py +14 -3
- gcore/types/cloud/load_balancers/pools/member_add_params.py +14 -3
- gcore/types/cloud/member.py +12 -4
- {gcore-0.5.0.dist-info → gcore-0.6.0.dist-info}/METADATA +2 -3
- {gcore-0.5.0.dist-info → gcore-0.6.0.dist-info}/RECORD +28 -19
- {gcore-0.5.0.dist-info → gcore-0.6.0.dist-info}/WHEEL +0 -0
- {gcore-0.5.0.dist-info → gcore-0.6.0.dist-info}/licenses/LICENSE +0 -0
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from typing import List, Optional
|
|
4
|
+
|
|
5
|
+
from ...._models import BaseModel
|
|
6
|
+
|
|
7
|
+
__all__ = ["InferenceAPIKeyCreate"]
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class InferenceAPIKeyCreate(BaseModel):
|
|
11
|
+
created_at: str
|
|
12
|
+
"""Timestamp when the API Key was created."""
|
|
13
|
+
|
|
14
|
+
deployment_names: List[str]
|
|
15
|
+
"""List of inference deployment names to which this API Key has been attached."""
|
|
16
|
+
|
|
17
|
+
description: Optional[str] = None
|
|
18
|
+
"""Description of the API Key."""
|
|
19
|
+
|
|
20
|
+
expires_at: Optional[str] = None
|
|
21
|
+
"""Timestamp when the API Key will expire."""
|
|
22
|
+
|
|
23
|
+
name: str
|
|
24
|
+
"""API Key name."""
|
|
25
|
+
|
|
26
|
+
secret: str
|
|
27
|
+
"""The actual API Key secret."""
|
|
@@ -173,7 +173,7 @@ class ListenerPoolMember(TypedDict, total=False):
|
|
|
173
173
|
protocol_port: Required[int]
|
|
174
174
|
"""Member IP port"""
|
|
175
175
|
|
|
176
|
-
admin_state_up:
|
|
176
|
+
admin_state_up: bool
|
|
177
177
|
"""Administrative state of the resource.
|
|
178
178
|
|
|
179
179
|
When set to true, the resource is enabled and operational. When set to false,
|
|
@@ -181,6 +181,14 @@ class ListenerPoolMember(TypedDict, total=False):
|
|
|
181
181
|
value is skipped and defaults to true.
|
|
182
182
|
"""
|
|
183
183
|
|
|
184
|
+
backup: bool
|
|
185
|
+
"""
|
|
186
|
+
Set to true if the member is a backup member, to which traffic will be sent
|
|
187
|
+
exclusively when all non-backup members will be unreachable. It allows to
|
|
188
|
+
realize ACTIVE-BACKUP load balancing without thinking about VRRP and VIP
|
|
189
|
+
configuration. Default is false.
|
|
190
|
+
"""
|
|
191
|
+
|
|
184
192
|
instance_id: Optional[str]
|
|
185
193
|
"""Either `subnet_id` or `instance_id` should be provided"""
|
|
186
194
|
|
|
@@ -197,10 +205,13 @@ class ListenerPoolMember(TypedDict, total=False):
|
|
|
197
205
|
"""
|
|
198
206
|
|
|
199
207
|
subnet_id: Optional[str]
|
|
200
|
-
"""
|
|
208
|
+
"""`subnet_id` in which `address` is present.
|
|
209
|
+
|
|
210
|
+
Either `subnet_id` or `instance_id` should be provided
|
|
211
|
+
"""
|
|
201
212
|
|
|
202
213
|
weight: Optional[int]
|
|
203
|
-
"""Member weight. Valid values
|
|
214
|
+
"""Member weight. Valid values are 0 < `weight` <= 256, defaults to 1."""
|
|
204
215
|
|
|
205
216
|
|
|
206
217
|
class ListenerPoolSessionPersistence(TypedDict, total=False):
|
|
@@ -104,7 +104,7 @@ class Member(TypedDict, total=False):
|
|
|
104
104
|
protocol_port: Required[int]
|
|
105
105
|
"""Member IP port"""
|
|
106
106
|
|
|
107
|
-
admin_state_up:
|
|
107
|
+
admin_state_up: bool
|
|
108
108
|
"""Administrative state of the resource.
|
|
109
109
|
|
|
110
110
|
When set to true, the resource is enabled and operational. When set to false,
|
|
@@ -112,6 +112,14 @@ class Member(TypedDict, total=False):
|
|
|
112
112
|
value is skipped and defaults to true.
|
|
113
113
|
"""
|
|
114
114
|
|
|
115
|
+
backup: bool
|
|
116
|
+
"""
|
|
117
|
+
Set to true if the member is a backup member, to which traffic will be sent
|
|
118
|
+
exclusively when all non-backup members will be unreachable. It allows to
|
|
119
|
+
realize ACTIVE-BACKUP load balancing without thinking about VRRP and VIP
|
|
120
|
+
configuration. Default is false.
|
|
121
|
+
"""
|
|
122
|
+
|
|
115
123
|
instance_id: Optional[str]
|
|
116
124
|
"""Either `subnet_id` or `instance_id` should be provided"""
|
|
117
125
|
|
|
@@ -128,10 +136,13 @@ class Member(TypedDict, total=False):
|
|
|
128
136
|
"""
|
|
129
137
|
|
|
130
138
|
subnet_id: Optional[str]
|
|
131
|
-
"""
|
|
139
|
+
"""`subnet_id` in which `address` is present.
|
|
140
|
+
|
|
141
|
+
Either `subnet_id` or `instance_id` should be provided
|
|
142
|
+
"""
|
|
132
143
|
|
|
133
144
|
weight: Optional[int]
|
|
134
|
-
"""Member weight. Valid values
|
|
145
|
+
"""Member weight. Valid values are 0 < `weight` <= 256, defaults to 1."""
|
|
135
146
|
|
|
136
147
|
|
|
137
148
|
class SessionPersistence(TypedDict, total=False):
|
|
@@ -102,7 +102,7 @@ class Member(TypedDict, total=False):
|
|
|
102
102
|
protocol_port: Required[int]
|
|
103
103
|
"""Member IP port"""
|
|
104
104
|
|
|
105
|
-
admin_state_up:
|
|
105
|
+
admin_state_up: bool
|
|
106
106
|
"""Administrative state of the resource.
|
|
107
107
|
|
|
108
108
|
When set to true, the resource is enabled and operational. When set to false,
|
|
@@ -110,6 +110,14 @@ class Member(TypedDict, total=False):
|
|
|
110
110
|
value is skipped and defaults to true.
|
|
111
111
|
"""
|
|
112
112
|
|
|
113
|
+
backup: bool
|
|
114
|
+
"""
|
|
115
|
+
Set to true if the member is a backup member, to which traffic will be sent
|
|
116
|
+
exclusively when all non-backup members will be unreachable. It allows to
|
|
117
|
+
realize ACTIVE-BACKUP load balancing without thinking about VRRP and VIP
|
|
118
|
+
configuration. Default is false.
|
|
119
|
+
"""
|
|
120
|
+
|
|
113
121
|
instance_id: Optional[str]
|
|
114
122
|
"""Either `subnet_id` or `instance_id` should be provided"""
|
|
115
123
|
|
|
@@ -126,10 +134,13 @@ class Member(TypedDict, total=False):
|
|
|
126
134
|
"""
|
|
127
135
|
|
|
128
136
|
subnet_id: Optional[str]
|
|
129
|
-
"""
|
|
137
|
+
"""`subnet_id` in which `address` is present.
|
|
138
|
+
|
|
139
|
+
Either `subnet_id` or `instance_id` should be provided
|
|
140
|
+
"""
|
|
130
141
|
|
|
131
142
|
weight: Optional[int]
|
|
132
|
-
"""Member weight. Valid values
|
|
143
|
+
"""Member weight. Valid values are 0 < `weight` <= 256, defaults to 1."""
|
|
133
144
|
|
|
134
145
|
|
|
135
146
|
class SessionPersistence(TypedDict, total=False):
|
|
@@ -21,7 +21,7 @@ class MemberAddParams(TypedDict, total=False):
|
|
|
21
21
|
protocol_port: Required[int]
|
|
22
22
|
"""Member IP port"""
|
|
23
23
|
|
|
24
|
-
admin_state_up:
|
|
24
|
+
admin_state_up: bool
|
|
25
25
|
"""Administrative state of the resource.
|
|
26
26
|
|
|
27
27
|
When set to true, the resource is enabled and operational. When set to false,
|
|
@@ -29,6 +29,14 @@ class MemberAddParams(TypedDict, total=False):
|
|
|
29
29
|
value is skipped and defaults to true.
|
|
30
30
|
"""
|
|
31
31
|
|
|
32
|
+
backup: bool
|
|
33
|
+
"""
|
|
34
|
+
Set to true if the member is a backup member, to which traffic will be sent
|
|
35
|
+
exclusively when all non-backup members will be unreachable. It allows to
|
|
36
|
+
realize ACTIVE-BACKUP load balancing without thinking about VRRP and VIP
|
|
37
|
+
configuration. Default is false.
|
|
38
|
+
"""
|
|
39
|
+
|
|
32
40
|
instance_id: Optional[str]
|
|
33
41
|
"""Either `subnet_id` or `instance_id` should be provided"""
|
|
34
42
|
|
|
@@ -45,7 +53,10 @@ class MemberAddParams(TypedDict, total=False):
|
|
|
45
53
|
"""
|
|
46
54
|
|
|
47
55
|
subnet_id: Optional[str]
|
|
48
|
-
"""
|
|
56
|
+
"""`subnet_id` in which `address` is present.
|
|
57
|
+
|
|
58
|
+
Either `subnet_id` or `instance_id` should be provided
|
|
59
|
+
"""
|
|
49
60
|
|
|
50
61
|
weight: Optional[int]
|
|
51
|
-
"""Member weight. Valid values
|
|
62
|
+
"""Member weight. Valid values are 0 < `weight` <= 256, defaults to 1."""
|
gcore/types/cloud/member.py
CHANGED
|
@@ -24,6 +24,14 @@ class Member(BaseModel):
|
|
|
24
24
|
value is skipped and defaults to true.
|
|
25
25
|
"""
|
|
26
26
|
|
|
27
|
+
backup: bool
|
|
28
|
+
"""
|
|
29
|
+
Set to true if the member is a backup member, to which traffic will be sent
|
|
30
|
+
exclusively when all non-backup members will be unreachable. It allows to
|
|
31
|
+
realize ACTIVE-BACKUP load balancing without thinking about VRRP and VIP
|
|
32
|
+
configuration. Default is false
|
|
33
|
+
"""
|
|
34
|
+
|
|
27
35
|
operating_status: LoadBalancerOperatingStatus
|
|
28
36
|
"""Member operating status of the entity"""
|
|
29
37
|
|
|
@@ -33,8 +41,11 @@ class Member(BaseModel):
|
|
|
33
41
|
provisioning_status: ProvisioningStatus
|
|
34
42
|
"""Pool member lifecycle status"""
|
|
35
43
|
|
|
44
|
+
subnet_id: Optional[str] = None
|
|
45
|
+
"""`subnet_id` in which `address` is present."""
|
|
46
|
+
|
|
36
47
|
weight: int
|
|
37
|
-
"""Member weight. Valid values
|
|
48
|
+
"""Member weight. Valid values are 0 < `weight` <= 256."""
|
|
38
49
|
|
|
39
50
|
monitor_address: Optional[str] = None
|
|
40
51
|
"""An alternate IP address used for health monitoring of a backend member.
|
|
@@ -47,6 +58,3 @@ class Member(BaseModel):
|
|
|
47
58
|
|
|
48
59
|
Default is null which monitors the member `protocol_port`.
|
|
49
60
|
"""
|
|
50
|
-
|
|
51
|
-
subnet_id: Optional[str] = None
|
|
52
|
-
"""Either `subnet_id` or `instance_id` should be provided"""
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: gcore
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.6.0
|
|
4
4
|
Summary: The official Python library for the gcore API
|
|
5
5
|
Project-URL: Homepage, https://github.com/G-Core/gcore-python
|
|
6
6
|
Project-URL: Repository, https://github.com/G-Core/gcore-python
|
|
@@ -118,7 +118,6 @@ pip install gcore[aiohttp]
|
|
|
118
118
|
Then you can enable it by instantiating the client with `http_client=DefaultAioHttpClient()`:
|
|
119
119
|
|
|
120
120
|
```python
|
|
121
|
-
import os
|
|
122
121
|
import asyncio
|
|
123
122
|
from gcore import DefaultAioHttpClient
|
|
124
123
|
from gcore import AsyncGcore
|
|
@@ -126,7 +125,7 @@ from gcore import AsyncGcore
|
|
|
126
125
|
|
|
127
126
|
async def main() -> None:
|
|
128
127
|
async with AsyncGcore(
|
|
129
|
-
api_key=
|
|
128
|
+
api_key="My API Key",
|
|
130
129
|
http_client=DefaultAioHttpClient(),
|
|
131
130
|
) as client:
|
|
132
131
|
project = await client.cloud.projects.create(
|
|
@@ -11,7 +11,7 @@ gcore/_resource.py,sha256=wjIMnFffh-DZDdpBCgdDCdoXR2TPhpAosw7rElBSpYo,1094
|
|
|
11
11
|
gcore/_response.py,sha256=V1N02BVR5uoyxmvzOS3O579oe_PkeA4eyM_Hzodv9EU,28782
|
|
12
12
|
gcore/_streaming.py,sha256=ICh9tioDlP6Uvmis9p5Aieefqhjfhu6xLCJqDSDIqK4,10096
|
|
13
13
|
gcore/_types.py,sha256=zuvjpJIwv-yunY8WsEsHlKKHTbpHeFriUoesVDk4Qbk,6196
|
|
14
|
-
gcore/_version.py,sha256=
|
|
14
|
+
gcore/_version.py,sha256=xGdZc58XThJFnd0VQcTiJShahLCno3BzhqZsqxrH42U,157
|
|
15
15
|
gcore/pagination.py,sha256=IhCw0ZiAvnmXZ9gGXK5dp6SX_KuJILopMi2cEaI1_oM,8901
|
|
16
16
|
gcore/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
17
17
|
gcore/_utils/__init__.py,sha256=PNZ_QJuzZEgyYXqkO1HVhGkj5IU9bglVUcw7H-Knjzw,2062
|
|
@@ -27,9 +27,10 @@ gcore/_utils/_utils.py,sha256=ts4CiiuNpFiGB6YMdkQRh2SZvYvsl7mAF-JWHCcLDf4,12312
|
|
|
27
27
|
gcore/lib/.keep,sha256=wuNrz-5SXo3jJaJOJgz4vFHM41YH_g20F5cRQo0vLes,224
|
|
28
28
|
gcore/lib/polling.py,sha256=DqeLEu22gMFSAuNV5uO16U4c5rGfk_1wXVWCQ8bua0s,570
|
|
29
29
|
gcore/resources/__init__.py,sha256=5ZH-7JV7SnGXhEUXnWJbwNyPsVqraE3N10SySoPV_h0,1850
|
|
30
|
-
gcore/resources/cloud/__init__.py,sha256=
|
|
30
|
+
gcore/resources/cloud/__init__.py,sha256=0QMqIKMxhyRigzBnHX0L83VTGI1DloCSIQMehdsBL-M,12124
|
|
31
|
+
gcore/resources/cloud/audit_logs.py,sha256=g0AjENo6QW4foRfioqtITuxP8cwCKoIRPPmEibVUX3Y,17133
|
|
31
32
|
gcore/resources/cloud/billing_reservations.py,sha256=bQYK1dcMY6__hgVfu88eyn11S4hI1j6FCOCCL4eVXTo,15019
|
|
32
|
-
gcore/resources/cloud/cloud.py,sha256=
|
|
33
|
+
gcore/resources/cloud/cloud.py,sha256=GqE3LUuIk48KpKvgPlTjEgkleCyQQE23DzyVfYTVcA0,29990
|
|
33
34
|
gcore/resources/cloud/floating_ips.py,sha256=SlQXAjRLZpfBNWBszi4eMo9tximhfYyFp9BSVKSr3OE,29993
|
|
34
35
|
gcore/resources/cloud/ip_ranges.py,sha256=SDSseH8LhEF2RmdLKhXaxULDUyEZRgTin8yY_q6BoII,7060
|
|
35
36
|
gcore/resources/cloud/placement_groups.py,sha256=FuhPrDY2tKqX6xL94RWbWQu1zwilyAgzZ1_KKwZU8R4,18085
|
|
@@ -46,16 +47,17 @@ gcore/resources/cloud/baremetal/images.py,sha256=_rKpBtw0ubqSOS7Ui4yADZqpYyMxZGz
|
|
|
46
47
|
gcore/resources/cloud/baremetal/servers.py,sha256=eFAtaau_M5RMQzbqIu-RPUIsSvjr-VBSiQJLbQLMC8M,45438
|
|
47
48
|
gcore/resources/cloud/file_shares/__init__.py,sha256=uf9unJWdK2ysx6dLLIJlBdHZR8vP7AMKGjtolkT6620,1121
|
|
48
49
|
gcore/resources/cloud/file_shares/access_rules.py,sha256=E-qspcMywQXZHQCrITTulj3Dy1f3P_hcC76fdRC85q8,16263
|
|
49
|
-
gcore/resources/cloud/file_shares/file_shares.py,sha256=
|
|
50
|
+
gcore/resources/cloud/file_shares/file_shares.py,sha256=cKqK8z2WboKA9OwBlUW_WVDa9lN2yLBay4ff_eVPAVo,41030
|
|
50
51
|
gcore/resources/cloud/gpu_baremetal_clusters/__init__.py,sha256=VJk9izePFXv3DR16rq0Abc4kZ0SsBC31GX5D0nWfzys,2614
|
|
51
52
|
gcore/resources/cloud/gpu_baremetal_clusters/flavors.py,sha256=JLwSCD4DizLzcZVj12YT5wBiVzZwSM4PloEpu45YbC0,7688
|
|
52
53
|
gcore/resources/cloud/gpu_baremetal_clusters/gpu_baremetal_clusters.py,sha256=EcY352J_Vl3atBt1023EaJ_AtmSNSGfa3S7xFhL6Lsc,61054
|
|
53
54
|
gcore/resources/cloud/gpu_baremetal_clusters/images.py,sha256=Ai6cRKuc_TCnNywXkFmiFtkgnbjYG3RDK5PG-NeCWsU,30418
|
|
54
55
|
gcore/resources/cloud/gpu_baremetal_clusters/interfaces.py,sha256=iUTBfJJvnGCCLLBxgMWAtfUw2ihg2hT0ilMtI38WbU4,6733
|
|
55
56
|
gcore/resources/cloud/gpu_baremetal_clusters/servers.py,sha256=pYFU9hVGId2A8wtm5H0-ynMk9aG0q-SZJ2KKysGO7cE,47376
|
|
56
|
-
gcore/resources/cloud/inference/__init__.py,sha256=
|
|
57
|
+
gcore/resources/cloud/inference/__init__.py,sha256=sAQvWC2o7pomlVwiL9hpAQbk-LnGU7Gi9Ka0E0N6a5Y,3566
|
|
58
|
+
gcore/resources/cloud/inference/api_keys.py,sha256=DFcU4urL_UgnuNhyWwz861VddX4KJpSaTRWjUAeWmvc,23495
|
|
57
59
|
gcore/resources/cloud/inference/flavors.py,sha256=mn-BVmo8GsJSUq3yJSxb02dW8FzYu7KNE0SG0W-WrCA,10038
|
|
58
|
-
gcore/resources/cloud/inference/inference.py,sha256=
|
|
60
|
+
gcore/resources/cloud/inference/inference.py,sha256=7Rk3mAq5uNjyi7bLff58pbZDtdUAs_k3Xcc8gTuxt6c,12385
|
|
59
61
|
gcore/resources/cloud/inference/models.py,sha256=WSmBqdnvmovn4AfhzaNgU6t6m7V9gy2WN28mBfJb6NA,10349
|
|
60
62
|
gcore/resources/cloud/inference/registry_credentials.py,sha256=pOWxC4WToVRCnlFlyljin30gIw8AQNsqA5OiMGxWxu0,24785
|
|
61
63
|
gcore/resources/cloud/inference/secrets.py,sha256=_6U5EpjPVSk0Jdhy7DlPiVG_wS0X7RkTpVTTeUqhQ94,22548
|
|
@@ -79,7 +81,7 @@ gcore/resources/cloud/load_balancers/l7_policies/l7_policies.py,sha256=evmsaGNMH
|
|
|
79
81
|
gcore/resources/cloud/load_balancers/l7_policies/rules.py,sha256=a9xSRSFTr47urMehBz5-4UbaN9yDyVgSFrYhCNkaK2M,40574
|
|
80
82
|
gcore/resources/cloud/load_balancers/pools/__init__.py,sha256=erdnXBB8ChWIP8wHinOrZ2YVcS_BSH1dyfJkk2Zb23k,1557
|
|
81
83
|
gcore/resources/cloud/load_balancers/pools/health_monitors.py,sha256=jSAQn5m-0UkBgRO8aFfKlXUMZnyOutwrG7kPwpuQCIo,14589
|
|
82
|
-
gcore/resources/cloud/load_balancers/pools/members.py,sha256=
|
|
84
|
+
gcore/resources/cloud/load_balancers/pools/members.py,sha256=ymnfQRwHmGQL9Gn576uUVjJF3FTSrXZypqkHe0CPwog,15583
|
|
83
85
|
gcore/resources/cloud/load_balancers/pools/pools.py,sha256=QDjw79JQndv4OwqudordyDWnsWInoID_OdVYOAGy5IE,50309
|
|
84
86
|
gcore/resources/cloud/networks/__init__.py,sha256=QOy0zCoXSgy5bJOxBfLdvQbUZKxfBrUeSlhAfFUxjsA,1504
|
|
85
87
|
gcore/resources/cloud/networks/networks.py,sha256=Ae2-1XSB4q8Av8ltdxj5m4gH2t_ZQWOPXFv1hmbJKZ8,31951
|
|
@@ -143,8 +145,10 @@ gcore/resources/waap/domains/api_discovery/__init__.py,sha256=1tY8XKOEGhwZ_NdKd6
|
|
|
143
145
|
gcore/resources/waap/domains/api_discovery/api_discovery.py,sha256=iY9__OKvSh9OvPwTUTb2C2qKAvx4Y0nrSbNV_KMAlSI,22143
|
|
144
146
|
gcore/resources/waap/domains/api_discovery/scan_results.py,sha256=Z0nCZAdukixZgUDsBx5AluQGHMgcX7bcW890KZOgFMQ,12693
|
|
145
147
|
gcore/types/__init__.py,sha256=OKfJYcKb4NObdiRObqJV_dOyDQ8feXekDUge2o_4pXQ,122
|
|
146
|
-
gcore/types/cloud/__init__.py,sha256=
|
|
148
|
+
gcore/types/cloud/__init__.py,sha256=sGiHBrasvcoRD_UN-HDONg-OOJKlXzQNZaa28lcuz1c,12793
|
|
147
149
|
gcore/types/cloud/allowed_address_pairs.py,sha256=VB7dOQ7kceprX7LEu3VpK-VWFevYmxA2lCURnGg9O0Q,439
|
|
150
|
+
gcore/types/cloud/audit_log_entry.py,sha256=izNkdtHa3RocYnLOxJCFvt71w0uQ9-xygS709dUZaxE,5990
|
|
151
|
+
gcore/types/cloud/audit_log_list_params.py,sha256=82vDEFEXD0jCyAmGVZ0ZdfNopa6nTGuWMiZqiO4MbVk,4296
|
|
148
152
|
gcore/types/cloud/baremetal_flavor.py,sha256=K7h_pqBSAznkAbcyza1M85pZaKneWg4A40PX_-FQMHw,1626
|
|
149
153
|
gcore/types/cloud/baremetal_flavor_list.py,sha256=Cas5C98DUSpNl0BS0_Pbxm_RUHbv7p2pPRqEKkejvE8,363
|
|
150
154
|
gcore/types/cloud/billing_reservation.py,sha256=xzVRTb9Eyu8Yk8PpJi0NYsQ4Zg-TxeGdYLzkcPDqikc,3866
|
|
@@ -161,7 +165,7 @@ gcore/types/cloud/file_share.py,sha256=tvOPrYFt-y5FCGnXl5ULHqgxLRbqtEM9i2YI7pt23
|
|
|
161
165
|
gcore/types/cloud/file_share_create_params.py,sha256=g1MXkAYmlil_1ZX3xOyUAVuBHfCkTHf3Kdr77fiZzRo,2858
|
|
162
166
|
gcore/types/cloud/file_share_list_params.py,sha256=mKKcNcdlMJLsW3IQ3FhSmpTmKt08YmXc_e2zlLk2wSI,669
|
|
163
167
|
gcore/types/cloud/file_share_resize_params.py,sha256=SmEiTu9aVXHPthLOXX4YBMnnP960w3mC3XnI6iqeWzk,409
|
|
164
|
-
gcore/types/cloud/file_share_update_params.py,sha256=
|
|
168
|
+
gcore/types/cloud/file_share_update_params.py,sha256=Hm-YgTS4zl8R5BnNYWjXmHDle9OK1t8C-J-_uJ23ET4,1582
|
|
165
169
|
gcore/types/cloud/fixed_address.py,sha256=m0Igtrtmz97dw-36U3wNX2W6EfYQiBvaeM7Vuey4qIA,1110
|
|
166
170
|
gcore/types/cloud/fixed_address_short.py,sha256=qGun0Ln1lKHfaE0P3xO0yfsvCMIw4rJldmUrmKvRMm0,667
|
|
167
171
|
gcore/types/cloud/flavor_hardware_description.py,sha256=LkKEWoXmXNHSvGQzLwCv_lKnomos0fK3UjYfLKe5xp8,690
|
|
@@ -219,7 +223,7 @@ gcore/types/cloud/lb_pool_protocol.py,sha256=rJPQhtDg-AYdeEu0tdV1ToxzA6QccAb3GKn
|
|
|
219
223
|
gcore/types/cloud/lb_session_persistence_type.py,sha256=FYG0VzhmKFhCZLdMija6KNELclaPuI0dSNs-Uwn_iQs,265
|
|
220
224
|
gcore/types/cloud/listener_status.py,sha256=2IIIHWtAxmiQZXhOkFiv-BLmKXEPONL4lsLE76RJOOE,714
|
|
221
225
|
gcore/types/cloud/load_balancer.py,sha256=gRSPHjXdDJSyVcghQr3pA7QUfJYdE8RvUiiVKqllBt0,3910
|
|
222
|
-
gcore/types/cloud/load_balancer_create_params.py,sha256=
|
|
226
|
+
gcore/types/cloud/load_balancer_create_params.py,sha256=1-50fm78dgC06fjdP_cPhJJ9G1iD1lOPgrKAPkW4Cog,10381
|
|
223
227
|
gcore/types/cloud/load_balancer_failover_params.py,sha256=55CaUGQM-8QWM4q6R4N603P4vv_pSul2QG622KlimKo,394
|
|
224
228
|
gcore/types/cloud/load_balancer_flavor_detail.py,sha256=kz8je3cmQskHSHNclbjnZ1pV0L47lUescSS1hNjWYNU,1277
|
|
225
229
|
gcore/types/cloud/load_balancer_flavor_list.py,sha256=JoiE3GB_fr1jFO8QXQr7eZma6Lk9x6c74KAoTpqb36E,398
|
|
@@ -244,7 +248,7 @@ gcore/types/cloud/load_balancer_status.py,sha256=sfV58e9up8MleaJHf2OoD_l2A6BTbYQ
|
|
|
244
248
|
gcore/types/cloud/load_balancer_status_list.py,sha256=35NsCy1uzOQCC2ct3U78jxb-5P3AueE3B5jKhJLb30o,379
|
|
245
249
|
gcore/types/cloud/load_balancer_update_params.py,sha256=NkQmEzUyAy8EOe6xgJO6eDEv6NyEQvTc9o4PHzkRvew,2344
|
|
246
250
|
gcore/types/cloud/logging.py,sha256=VKxEhgGo_4Cb6JqIYz2o0UQQ9djSR_4AfUvcLjKncjc,631
|
|
247
|
-
gcore/types/cloud/member.py,sha256=
|
|
251
|
+
gcore/types/cloud/member.py,sha256=XjMZ7qV1Es_wgNaL27oZZ8e4TOmdrFP5x6fETUc8mqI,1832
|
|
248
252
|
gcore/types/cloud/member_status.py,sha256=G733vpfiyRWWCqMqsea78O7BltZJu-b9Ph0gqtN3sZ4,648
|
|
249
253
|
gcore/types/cloud/network.py,sha256=7Sbucx3qKh_-GXnMq0ESFm-I5vzyQLNUw_fhuEXfmDw,2029
|
|
250
254
|
gcore/types/cloud/network_create_params.py,sha256=vAUohVRw0nXuIQYy0k9sR-QsPO0jx0jINPy9Nv766c4,1007
|
|
@@ -327,11 +331,16 @@ gcore/types/cloud/gpu_baremetal_clusters/image_upload_params.py,sha256=mBU7x_ykZ
|
|
|
327
331
|
gcore/types/cloud/gpu_baremetal_clusters/server_attach_interface_params.py,sha256=PTWDRk7BIOt3yhi5HewZDvz9Gar1cS_KrpbxocbIZes,7342
|
|
328
332
|
gcore/types/cloud/gpu_baremetal_clusters/server_delete_params.py,sha256=5t_Ugkii1AE2OEq7xegn1nNTqfIQxf6VXYxFw2q2glk,463
|
|
329
333
|
gcore/types/cloud/gpu_baremetal_clusters/server_detach_interface_params.py,sha256=FgdUX46SnuvwLZi3IcDqkvLhHGc7yj4Y5dYo7_0juws,422
|
|
330
|
-
gcore/types/cloud/inference/__init__.py,sha256=
|
|
334
|
+
gcore/types/cloud/inference/__init__.py,sha256=5rE_niJHgzYt7dbnoihjeio27cDzyun2qTj5n5AmWFY,2299
|
|
335
|
+
gcore/types/cloud/inference/api_key_create_params.py,sha256=y__rotgavrN3MduV1StiXB3_uUd0bNbsJ8ql91yPKE0,498
|
|
336
|
+
gcore/types/cloud/inference/api_key_list_params.py,sha256=ysOoELSCdcfNb0_78ydjz_JDAVR1PaoN78h5p_uMkis,477
|
|
337
|
+
gcore/types/cloud/inference/api_key_update_params.py,sha256=P9w7qL3NdHFed32RImE47ohVjBkm0viNRH5bXG_ei6c,388
|
|
331
338
|
gcore/types/cloud/inference/deployment_create_params.py,sha256=cKIPyaXqnj7dvDnKRQukWt0MnHG_T5FSGKKFSANT2jE,13019
|
|
332
339
|
gcore/types/cloud/inference/deployment_list_params.py,sha256=BA0bBgSjW6bNg20VfW-MDjc_0IA_1c5nu8yJ5mSMKXQ,485
|
|
333
340
|
gcore/types/cloud/inference/deployment_update_params.py,sha256=tEfePvR410g11S-q2RZdbJ1hCyvWrANRtAzNUx3IgQI,12783
|
|
334
341
|
gcore/types/cloud/inference/flavor_list_params.py,sha256=ejc94sDxQjRxguJ_goxn-SNQ9S2fptmDbrzLxSKzsdE,435
|
|
342
|
+
gcore/types/cloud/inference/inference_api_key.py,sha256=mqX6rQIWHv924tKAMoCYCCCgsk04KO85APjXe_7ZgwA,616
|
|
343
|
+
gcore/types/cloud/inference/inference_api_key_create.py,sha256=4jzX-Hnq1GlCyCy9-fVP37iXDnPuOV8sWvdIz0gL_ko,682
|
|
335
344
|
gcore/types/cloud/inference/inference_deployment.py,sha256=MsCoX9MZ9-A9HE1NU1Pw8ETIEV6qIzqJvh5ODgcjelg,7851
|
|
336
345
|
gcore/types/cloud/inference/inference_deployment_api_key.py,sha256=8eeMJ8I6eGHCSIJ45oAEth72ltWdFSGQS0R37C99Yto,354
|
|
337
346
|
gcore/types/cloud/inference/inference_flavor.py,sha256=dlAm7SF8Y7puqOlLQwd5LQv3_BE61Jq0ojWcD07S9SE,740
|
|
@@ -377,15 +386,15 @@ gcore/types/cloud/load_balancers/listener_get_params.py,sha256=6sHA490B-JQLmypal
|
|
|
377
386
|
gcore/types/cloud/load_balancers/listener_list_params.py,sha256=adoW16jeb5DQt64wJy4qM8hq5Iz9cke02xw9Y-p3q4M,426
|
|
378
387
|
gcore/types/cloud/load_balancers/listener_update_params.py,sha256=lQ5xbPV31eeOxC5Jpm723dN6UUtYXROlNR5vLk9LXfI,1573
|
|
379
388
|
gcore/types/cloud/load_balancers/metric_list_params.py,sha256=UOcswyMOb8sfpAqFLNX7PdtwfJTSnWQh4gntA-IzjUo,498
|
|
380
|
-
gcore/types/cloud/load_balancers/pool_create_params.py,sha256=
|
|
389
|
+
gcore/types/cloud/load_balancers/pool_create_params.py,sha256=5sgjnPOuDte0-WJVHgUs595vbbeWxNWBJhDAujluuVE,4650
|
|
381
390
|
gcore/types/cloud/load_balancers/pool_list_params.py,sha256=iTV5r3UbUy4Gn1g-OoOrqNZlD5SXARUwf5lbikK1Ftc,488
|
|
382
|
-
gcore/types/cloud/load_balancers/pool_update_params.py,sha256=
|
|
391
|
+
gcore/types/cloud/load_balancers/pool_update_params.py,sha256=YIqLrmejBtI6ZdXqfNEs-ShND72cEAivvh9DAO47npw,4727
|
|
383
392
|
gcore/types/cloud/load_balancers/l7_policies/__init__.py,sha256=QcAoDEvmr4P-p4glrNiGxJXxRjVwPV_FozbC_7T8_NA,264
|
|
384
393
|
gcore/types/cloud/load_balancers/l7_policies/rule_create_params.py,sha256=2ozSUfb_S2YxhUBCFwrJGOX7zLRlXIpUs0MjhTdty6M,1246
|
|
385
394
|
gcore/types/cloud/load_balancers/l7_policies/rule_replace_params.py,sha256=VQlLR70yuVFRPcBUiBMs_X7wT3Fin5LqNgB4JGfgTJY,1143
|
|
386
395
|
gcore/types/cloud/load_balancers/pools/__init__.py,sha256=O72B7riBRS1rUZaD_20jp1vI6NeAEbC_2prZjQPe-ug,286
|
|
387
396
|
gcore/types/cloud/load_balancers/pools/health_monitor_create_params.py,sha256=BfauGkV-E-TEbDm8jFO4toel30rcCbmVgqoVNn19fM0,1516
|
|
388
|
-
gcore/types/cloud/load_balancers/pools/member_add_params.py,sha256=
|
|
397
|
+
gcore/types/cloud/load_balancers/pools/member_add_params.py,sha256=qAs6gXQVW6jOgZoSG1y_QXermkn0SBrR7LrCfhpPyi0,1788
|
|
389
398
|
gcore/types/cloud/networks/__init__.py,sha256=o77hD6kOTycmFqUKNDJhVmhil311k92mygVtFNq0TE4,836
|
|
390
399
|
gcore/types/cloud/networks/router.py,sha256=lgMtKmz3OVuO1pWBXROf7rODQYOkMUI9Mxo8T0iL8G4,1957
|
|
391
400
|
gcore/types/cloud/networks/router_attach_subnet_params.py,sha256=AOu3j304xVf0OuB8agvru5HWboMgWB5Ue1OV9JeaHNQ,591
|
|
@@ -630,7 +639,7 @@ gcore/types/waap/domains/api_discovery/__init__.py,sha256=6gvnvRbTHK16q0svXoe7BF
|
|
|
630
639
|
gcore/types/waap/domains/api_discovery/scan_result_get_response.py,sha256=vQNdPURnTMklwljjF9XBxr-JvOTYpNPxQ8aNJWSBEuU,791
|
|
631
640
|
gcore/types/waap/domains/api_discovery/scan_result_list_params.py,sha256=HAZ8uLzbdO_pDUJ5rDxazbeEU5t2BOAfaRIQX8vvnl4,1062
|
|
632
641
|
gcore/types/waap/domains/api_discovery/scan_result_list_response.py,sha256=-io6EFtB4U7Qz_La5Fhm1lMmqS8I0UthJyVOLYxpLnY,793
|
|
633
|
-
gcore-0.
|
|
634
|
-
gcore-0.
|
|
635
|
-
gcore-0.
|
|
636
|
-
gcore-0.
|
|
642
|
+
gcore-0.6.0.dist-info/METADATA,sha256=WjhywmmrB3JyaOK9VjBY8eu6pJfazSDuRwpadFvi7iU,15908
|
|
643
|
+
gcore-0.6.0.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
|
644
|
+
gcore-0.6.0.dist-info/licenses/LICENSE,sha256=2pZguB1aJ1XYFdGBG1gSFtWegXINirA9gVU0ouDbP_s,11335
|
|
645
|
+
gcore-0.6.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|