yellowdog-sdk 11.6.0__py3-none-any.whl → 11.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.
- yellowdog_client/_version.py +1 -1
- yellowdog_client/account/__init__.py +6 -0
- yellowdog_client/account/application_client.py +13 -0
- yellowdog_client/account/application_client_impl.py +15 -0
- yellowdog_client/account/application_service_proxy.py +11 -0
- yellowdog_client/model/__init__.py +6 -0
- yellowdog_client/model/aggregate_instance_usage_filter.py +13 -0
- yellowdog_client/model/application_details.py +15 -0
- yellowdog_client/model/run_specification.py +8 -0
- yellowdog_client/model/task.py +4 -0
- yellowdog_client/model/task_working_time.py +10 -0
- yellowdog_client/model/worker.py +6 -0
- yellowdog_client/platform_client.py +9 -3
- {yellowdog_sdk-11.6.0.dist-info → yellowdog_sdk-11.8.0.dist-info}/METADATA +1 -1
- {yellowdog_sdk-11.6.0.dist-info → yellowdog_sdk-11.8.0.dist-info}/RECORD +18 -12
- {yellowdog_sdk-11.6.0.dist-info → yellowdog_sdk-11.8.0.dist-info}/WHEEL +1 -1
- {yellowdog_sdk-11.6.0.dist-info → yellowdog_sdk-11.8.0.dist-info}/licenses/LICENSE +0 -0
- {yellowdog_sdk-11.6.0.dist-info → yellowdog_sdk-11.8.0.dist-info}/top_level.txt +0 -0
yellowdog_client/_version.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = '11.
|
|
1
|
+
__version__ = '11.8.0' # YEL-14199
|
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
from .account_client import AccountClient
|
|
2
2
|
from .account_client_impl import AccountClientImpl
|
|
3
3
|
from .account_service_proxy import AccountServiceProxy
|
|
4
|
+
from .application_client import ApplicationClient
|
|
5
|
+
from .application_client_impl import ApplicationClientImpl
|
|
6
|
+
from .application_service_proxy import ApplicationServiceProxy
|
|
4
7
|
from .keyring_client_impl import KeyringClientImpl
|
|
5
8
|
from .keyring_service_proxy import KeyringServiceProxy
|
|
6
9
|
from .keyring_client import KeyringClient
|
|
@@ -9,6 +12,9 @@ __all__ = [
|
|
|
9
12
|
"AccountClient",
|
|
10
13
|
"AccountClientImpl",
|
|
11
14
|
"AccountServiceProxy",
|
|
15
|
+
"ApplicationClient",
|
|
16
|
+
"ApplicationClientImpl",
|
|
17
|
+
"ApplicationServiceProxy",
|
|
12
18
|
"KeyringClientImpl",
|
|
13
19
|
"KeyringServiceProxy",
|
|
14
20
|
"KeyringClient"
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
|
|
3
|
+
from abc import ABC, abstractmethod
|
|
4
|
+
|
|
5
|
+
from yellowdog_client.common import Closeable
|
|
6
|
+
from yellowdog_client.model import ApplicationDetails
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
class ApplicationClient(ABC, Closeable):
|
|
10
|
+
|
|
11
|
+
@abstractmethod
|
|
12
|
+
def get_application_details(self) -> ApplicationDetails:
|
|
13
|
+
pass
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
from yellowdog_client.account.application_client import ApplicationClient
|
|
2
|
+
from yellowdog_client.account.application_service_proxy import ApplicationServiceProxy
|
|
3
|
+
from yellowdog_client.model import ApplicationDetails
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
class ApplicationClientImpl(ApplicationClient):
|
|
7
|
+
def __init__(self, service_proxy: ApplicationServiceProxy) -> None:
|
|
8
|
+
self.__service_proxy = service_proxy
|
|
9
|
+
|
|
10
|
+
def get_application_details(self) -> ApplicationDetails:
|
|
11
|
+
return self.__service_proxy.get_application_details()
|
|
12
|
+
|
|
13
|
+
def close(self) -> None:
|
|
14
|
+
pass
|
|
15
|
+
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
from yellowdog_client.common import Proxy
|
|
2
|
+
from yellowdog_client.model import ApplicationDetails
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
class ApplicationServiceProxy:
|
|
6
|
+
def __init__(self, proxy: Proxy) -> None:
|
|
7
|
+
self.proxy: Proxy = proxy.append_base_url("/application/")
|
|
8
|
+
|
|
9
|
+
def get_application_details(self) -> ApplicationDetails:
|
|
10
|
+
return self.proxy.get(ApplicationDetails)
|
|
11
|
+
|
|
@@ -11,6 +11,7 @@ from .add_group_request import AddGroupRequest
|
|
|
11
11
|
from .add_node_actions_request import AddNodeActionsRequest
|
|
12
12
|
from .add_user_request import AddUserRequest
|
|
13
13
|
from .add_user_response import AddUserResponse
|
|
14
|
+
from .aggregate_instance_usage_filter import AggregateInstanceUsageFilter
|
|
14
15
|
from .allowance import Allowance
|
|
15
16
|
from .allowance_exhausted_notification import AllowanceExhaustedNotification
|
|
16
17
|
from .allowance_limit_enforcement import AllowanceLimitEnforcement
|
|
@@ -18,6 +19,7 @@ from .allowance_reset_type import AllowanceResetType
|
|
|
18
19
|
from .allowance_search import AllowanceSearch
|
|
19
20
|
from .api_key import ApiKey
|
|
20
21
|
from .application import Application
|
|
22
|
+
from .application_details import ApplicationDetails
|
|
21
23
|
from .application_search import ApplicationSearch
|
|
22
24
|
from .attribute_constraint import AttributeConstraint
|
|
23
25
|
from .attribute_definition import AttributeDefinition
|
|
@@ -287,6 +289,7 @@ from .task_output_source import TaskOutputSource
|
|
|
287
289
|
from .task_search import TaskSearch
|
|
288
290
|
from .task_status import TaskStatus
|
|
289
291
|
from .task_summary import TaskSummary
|
|
292
|
+
from .task_working_time import TaskWorkingTime
|
|
290
293
|
from .track import Track
|
|
291
294
|
from .track_search import TrackSearch
|
|
292
295
|
from .transfer_status_response import TransferStatusResponse
|
|
@@ -333,6 +336,7 @@ __all__ = [
|
|
|
333
336
|
"AddNodeActionsRequest",
|
|
334
337
|
"AddUserRequest",
|
|
335
338
|
"AddUserResponse",
|
|
339
|
+
"AggregateInstanceUsageFilter",
|
|
336
340
|
"Allowance",
|
|
337
341
|
"AllowanceExhaustedNotification",
|
|
338
342
|
"AllowanceLimitEnforcement",
|
|
@@ -340,6 +344,7 @@ __all__ = [
|
|
|
340
344
|
"AllowanceSearch",
|
|
341
345
|
"ApiKey",
|
|
342
346
|
"Application",
|
|
347
|
+
"ApplicationDetails",
|
|
343
348
|
"ApplicationSearch",
|
|
344
349
|
"AttributeConstraint",
|
|
345
350
|
"AttributeDefinition",
|
|
@@ -609,6 +614,7 @@ __all__ = [
|
|
|
609
614
|
"TaskSearch",
|
|
610
615
|
"TaskStatus",
|
|
611
616
|
"TaskSummary",
|
|
617
|
+
"TaskWorkingTime",
|
|
612
618
|
"Track",
|
|
613
619
|
"TrackSearch",
|
|
614
620
|
"TransferStatusResponse",
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
from dataclasses import dataclass
|
|
2
|
+
from datetime import datetime
|
|
3
|
+
from typing import List
|
|
4
|
+
|
|
5
|
+
from .filter import Filter
|
|
6
|
+
from .instance_status import InstanceStatus
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
@dataclass
|
|
10
|
+
class AggregateInstanceUsageFilter(Filter):
|
|
11
|
+
fromTime: datetime
|
|
12
|
+
untilTime: datetime
|
|
13
|
+
instanceStatuses: List[InstanceStatus]
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
from dataclasses import dataclass
|
|
2
|
+
from typing import List, Optional
|
|
3
|
+
|
|
4
|
+
from .feature import Feature
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
@dataclass
|
|
8
|
+
class ApplicationDetails:
|
|
9
|
+
accountId: Optional[str] = None
|
|
10
|
+
accountName: Optional[str] = None
|
|
11
|
+
id: Optional[str] = None
|
|
12
|
+
name: Optional[str] = None
|
|
13
|
+
allNamespacesReadable: bool = False
|
|
14
|
+
readableNamespaces: Optional[List[str]] = None
|
|
15
|
+
features: Optional[List[Feature]] = None
|
|
@@ -48,3 +48,11 @@ class RunSpecification:
|
|
|
48
48
|
|
|
49
49
|
retryableErrors: Optional[List[TaskErrorMatcher]] = None
|
|
50
50
|
"""Defines the errors that should result in a task retrying if encountered."""
|
|
51
|
+
batchAllocation: Optional[bool] = None
|
|
52
|
+
"""
|
|
53
|
+
Enables the batch allocation of tasks to nodes. Nodes will maintain local task queues and request batches of
|
|
54
|
+
tasks as these queues are drained by workers. This can increase throughput for short-running tasks by reducing
|
|
55
|
+
the latency between a worker completing a task and starting the next one. It can also enable larger numbers of
|
|
56
|
+
workers to be efficiently utilised by reducing overall load on the YellowDog Scheduler service.
|
|
57
|
+
"""
|
|
58
|
+
|
yellowdog_client/model/task.py
CHANGED
|
@@ -11,6 +11,7 @@ from .task_error import TaskError
|
|
|
11
11
|
from .task_input import TaskInput
|
|
12
12
|
from .task_output import TaskOutput
|
|
13
13
|
from .task_status import TaskStatus
|
|
14
|
+
from .task_working_time import TaskWorkingTime
|
|
14
15
|
|
|
15
16
|
|
|
16
17
|
@dataclass
|
|
@@ -24,6 +25,7 @@ class Task(Identified, Named, Tagged):
|
|
|
24
25
|
retryCount: Optional[int] = field(default=None, init=False)
|
|
25
26
|
"""How many times the task has failed and then been set back to WAITING to be retried."""
|
|
26
27
|
taskGroupId: Optional[str] = field(default=None, init=False)
|
|
28
|
+
nodeId: Optional[str] = field(default=None, init=False)
|
|
27
29
|
workerId: Optional[str] = field(default=None, init=False)
|
|
28
30
|
errors: Optional[List[TaskError]] = field(default=None, init=False)
|
|
29
31
|
taskType: str
|
|
@@ -41,6 +43,8 @@ class Task(Identified, Named, Tagged):
|
|
|
41
43
|
"""The time the task was last started by a Worker."""
|
|
42
44
|
finishedTime: Optional[datetime] = None
|
|
43
45
|
"""The time the task was finished."""
|
|
46
|
+
workingTime: Optional[TaskWorkingTime] = None
|
|
47
|
+
"""The times taken to do the task measured from the worker."""
|
|
44
48
|
abortRequestedTime: Optional[datetime] = None
|
|
45
49
|
"""The time when task abort was requested."""
|
|
46
50
|
inputs: Optional[List[TaskInput]] = None
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
from dataclasses import dataclass
|
|
2
|
+
from datetime import timedelta
|
|
3
|
+
from typing import Optional
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
@dataclass
|
|
7
|
+
class TaskWorkingTime:
|
|
8
|
+
downloading: Optional[timedelta] = None
|
|
9
|
+
executing: Optional[timedelta] = None
|
|
10
|
+
uploading: Optional[timedelta] = None
|
yellowdog_client/model/worker.py
CHANGED
|
@@ -18,6 +18,12 @@ class Worker(Identified):
|
|
|
18
18
|
"""A count of the tasks groups which have claims on the worker. Always identical to the size of #taskGroupIds."""
|
|
19
19
|
exclusive: bool = False
|
|
20
20
|
"""Indicates if the worker is exclusively claimed by a single task group."""
|
|
21
|
+
batchAllocation: bool = False
|
|
22
|
+
"""
|
|
23
|
+
Indicates if the worker has been claimed by a task group for batch allocation. Tasks will be allocated to the
|
|
24
|
+
worker's node in batches before being distributed to the worker.
|
|
25
|
+
"""
|
|
26
|
+
|
|
21
27
|
currentTaskId: Optional[str] = None
|
|
22
28
|
"""The ID of the task currently allocated to the worker."""
|
|
23
29
|
registeredTime: Optional[datetime] = None
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import sys
|
|
2
2
|
|
|
3
3
|
from ._version import __version__
|
|
4
|
-
from .account import KeyringClient, KeyringClientImpl, KeyringServiceProxy, AccountClientImpl, AccountServiceProxy
|
|
4
|
+
from .account import KeyringClient, KeyringClientImpl, KeyringServiceProxy, AccountClientImpl, AccountServiceProxy, \
|
|
5
|
+
ApplicationClient, ApplicationServiceProxy, ApplicationClientImpl
|
|
5
6
|
from .account.account_client import AccountClient
|
|
6
7
|
from .client_collection import ClientCollection
|
|
7
8
|
from .cloud_info import CloudInfoClient, CloudInfoClientImpl, CloudInfoProxy
|
|
@@ -36,7 +37,8 @@ class PlatformClient(Closeable):
|
|
|
36
37
|
worker_pool_client: WorkerPoolClient,
|
|
37
38
|
object_store_client: ObjectStoreClient,
|
|
38
39
|
allowances_client: AllowancesClient,
|
|
39
|
-
cloud_info_client: CloudInfoClient
|
|
40
|
+
cloud_info_client: CloudInfoClient,
|
|
41
|
+
application_client: ApplicationClient
|
|
40
42
|
) -> None:
|
|
41
43
|
self.__clients = ClientCollection()
|
|
42
44
|
self.account_client: AccountClient = self.__clients.add(account_client)
|
|
@@ -59,6 +61,8 @@ class PlatformClient(Closeable):
|
|
|
59
61
|
"""Allowances client. Used to constrain how much compute can be used"""
|
|
60
62
|
self.cloud_info_client: CloudInfoClient = self.__clients.add(cloud_info_client)
|
|
61
63
|
"""Cloud Info client. Used to query Cloud Info data """
|
|
64
|
+
self.application_client: ApplicationClient = self.__clients.add(application_client)
|
|
65
|
+
"""Application client. Used to controlling applications """
|
|
62
66
|
|
|
63
67
|
@staticmethod
|
|
64
68
|
def create(services_schema: ServicesSchema, api_key: ApiKey) -> "PlatformClient":
|
|
@@ -104,6 +108,7 @@ class PlatformClient(Closeable):
|
|
|
104
108
|
object_store_client = ObjectStoreClient(ObjectStoreServiceProxy(proxy.append_base_url(object_store_url)))
|
|
105
109
|
allowances_client = AllowancesClientImpl(AllowancesServiceProxy(proxy.append_base_url(usage_url)))
|
|
106
110
|
cloud_info_client = CloudInfoClientImpl(CloudInfoProxy(proxy.append_base_url(cloud_info_url)))
|
|
111
|
+
application_client = ApplicationClientImpl(ApplicationServiceProxy(proxy.append_base_url(account_url)))
|
|
107
112
|
|
|
108
113
|
return PlatformClient(
|
|
109
114
|
account_client=account_client,
|
|
@@ -115,7 +120,8 @@ class PlatformClient(Closeable):
|
|
|
115
120
|
worker_pool_client=worker_pool_client,
|
|
116
121
|
object_store_client=object_store_client,
|
|
117
122
|
allowances_client=allowances_client,
|
|
118
|
-
cloud_info_client=cloud_info_client
|
|
123
|
+
cloud_info_client=cloud_info_client,
|
|
124
|
+
application_client=application_client
|
|
119
125
|
)
|
|
120
126
|
|
|
121
127
|
def close(self) -> None:
|
|
@@ -1,12 +1,15 @@
|
|
|
1
1
|
__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
2
|
yellowdog_client/__init__.py,sha256=xHGTw5UbjkeEl_hC8_gJCacfji6462qJWD1nvJdFssE,13162
|
|
3
|
-
yellowdog_client/_version.py,sha256=
|
|
3
|
+
yellowdog_client/_version.py,sha256=yhZfM3Td7gBCaq2bxiWfN5mNCY6e59sB87a88x7V9tg,35
|
|
4
4
|
yellowdog_client/client_collection.py,sha256=VSEzjf6iR1qCQ0YGLyDq_Kgvw8r832QDwTp6-MLB4Vs,388
|
|
5
|
-
yellowdog_client/platform_client.py,sha256=
|
|
6
|
-
yellowdog_client/account/__init__.py,sha256=
|
|
5
|
+
yellowdog_client/platform_client.py,sha256=J1KNYC99WlK-cg9reAvqFKc4IKTtWFet-INLpGdECqI,7923
|
|
6
|
+
yellowdog_client/account/__init__.py,sha256=3mb1pxWtzXaFI7R1KqP76y9ni4kV1Xcle-IgVMuWh18,713
|
|
7
7
|
yellowdog_client/account/account_client.py,sha256=lt32hszRysBpOK4tWMw6sY98EVNIgQILn4zaW28LFmA,3529
|
|
8
8
|
yellowdog_client/account/account_client_impl.py,sha256=zEr_5_j94TxlYjQ6yGJ2nrHKi63lcg4_UYneBIJ4BqY,6349
|
|
9
9
|
yellowdog_client/account/account_service_proxy.py,sha256=b8HJXDxQ7dIysBbVCv0i3Dj4Vbsqxi38cqtwBEGIQrM,5679
|
|
10
|
+
yellowdog_client/account/application_client.py,sha256=TpIzV3qQFFHUMf_Ck34STQqTV9UUqx44BM7LtVbKgVc,311
|
|
11
|
+
yellowdog_client/account/application_client_impl.py,sha256=KEDZSmw5OBzUB8OsR_XvKxXshu5RSfH2OrpCCD5wVMs,550
|
|
12
|
+
yellowdog_client/account/application_service_proxy.py,sha256=k_fPjkR96dgjyGaqKqY6KRiIbfibzn43HEqNzec33pY,355
|
|
10
13
|
yellowdog_client/account/keyring_client.py,sha256=IFogh3LNNtL0cSbvbaEuhJ41UhtJbItyxm0AEnAaFMk,1125
|
|
11
14
|
yellowdog_client/account/keyring_client_impl.py,sha256=s_IltFtozR7lYdR9XNEZVj885pgJ0DoInv0B24GtblI,1665
|
|
12
15
|
yellowdog_client/account/keyring_service_proxy.py,sha256=8oK6lK3FxHOIbq--qcKSAd5bqkPGMN023CrX_Q8RKeI,1220
|
|
@@ -53,7 +56,7 @@ yellowdog_client/images/images_service_proxy.py,sha256=eyP4u6FoIH1WJvNM_m8tacTCs
|
|
|
53
56
|
yellowdog_client/images/page.py,sha256=UIvlxvzdcfnKvbcq2Cn6IB7ZtQMc3dzcBTUfElvVPwQ,391
|
|
54
57
|
yellowdog_client/images/pageable.py,sha256=msD8uGGJ2F5jEqTNDYaFrh6z6drlxOXZ1AmB0T3edM0,296
|
|
55
58
|
yellowdog_client/images/sort.py,sha256=YS05DlIRg1Cm3QLBi6KFjFdB3g-b3WrqFFitlMJUEMM,167
|
|
56
|
-
yellowdog_client/model/__init__.py,sha256=
|
|
59
|
+
yellowdog_client/model/__init__.py,sha256=MIswjKfv8PiLYQfNqxpH4hRt5N8I8prR2lOsSENsmRM,26640
|
|
57
60
|
yellowdog_client/model/access_delegate.py,sha256=jIW5P9jWG0LUirmci-rnHW_Lytv7dfKRJjAKwaLwvrU,575
|
|
58
61
|
yellowdog_client/model/account.py,sha256=r_-7J-JjjMcQPZzaQ4_o9y6XY7-GMPRLWt9mGOucYU0,394
|
|
59
62
|
yellowdog_client/model/account_allowance.py,sha256=c-MkSSRLB5Y5TMDZl5h5fipj4vzLLlO_AQXPeRJ0AYw,1021
|
|
@@ -67,6 +70,7 @@ yellowdog_client/model/add_group_request.py,sha256=9HV_ygW9GNqY25MZcbJJj59iWcV8v
|
|
|
67
70
|
yellowdog_client/model/add_node_actions_request.py,sha256=2jIZay71NiCnm7uyZxHDigdhb-wGulifD1qRKux5JOQ,247
|
|
68
71
|
yellowdog_client/model/add_user_request.py,sha256=xTaZpQ4RhX0iJWXCHPRPnDAXwnOB44Ii8A8rOAf12iY,116
|
|
69
72
|
yellowdog_client/model/add_user_response.py,sha256=_Bh_ria9w24vasFVbOxUEgbsd09u4tGb4mhON2qx6mo,154
|
|
73
|
+
yellowdog_client/model/aggregate_instance_usage_filter.py,sha256=ahy6wnSnpHY6ZjwNz_OCWdQFdkdL3MWLmlDB_zk7Viw,307
|
|
70
74
|
yellowdog_client/model/allowance.py,sha256=9BMKrxuT4UKTgvLhYnlyiXI2wkfcO9GYElbKLuYubcU,167
|
|
71
75
|
yellowdog_client/model/allowance_exhausted_notification.py,sha256=l38uP4l0CmC6v1qsPksCA-go-00Kt1Ec1t_RrhD1fKo,255
|
|
72
76
|
yellowdog_client/model/allowance_limit_enforcement.py,sha256=uvU86l0iY3-lcb3i0YHN3EVF6dxbWOM7ATYGgEPh0XE,436
|
|
@@ -74,6 +78,7 @@ yellowdog_client/model/allowance_reset_type.py,sha256=XtF2mbVm0Kn4Vb1xANYKJfXw4i
|
|
|
74
78
|
yellowdog_client/model/allowance_search.py,sha256=p-FV1YkDsbLVu5_IxetGIVw7UDKC0WjjCxOai5pH5qg,624
|
|
75
79
|
yellowdog_client/model/api_key.py,sha256=yQeXeMuoNqgYFAHMtWRzHWnBS8F-tVfZZ5zCB-klxT4,151
|
|
76
80
|
yellowdog_client/model/application.py,sha256=6L4PBLoLfWCJ8H8HqgsXcXoJwJfdHORBWW7MIDTo-CU,494
|
|
81
|
+
yellowdog_client/model/application_details.py,sha256=0Um8d8B_gnKL_LGJdm0W6vmBg9h96P1ZN_Mjcttkifg,407
|
|
77
82
|
yellowdog_client/model/application_search.py,sha256=UXAYUcGh_rSj87kqqwVgIMkhridIIJp0CRkBaCO_JRs,260
|
|
78
83
|
yellowdog_client/model/attribute_constraint.py,sha256=6GqpFsQuDMY3UnMKHn337Erlkt0qnBadHJJ0fL6MF3s,129
|
|
79
84
|
yellowdog_client/model/attribute_definition.py,sha256=7sl6txIaF-3E27D5btpRe40QRrV0n5w2U59i1Sr2isE,162
|
|
@@ -304,7 +309,7 @@ yellowdog_client/model/role.py,sha256=EK87THjFL4wYnPlFcV2ind7motMefsDm9aAL9B2PrM
|
|
|
304
309
|
yellowdog_client/model/role_scope.py,sha256=381xdwSarxxOKR8SkQzTKL6DZk8fOa5whVk3VSon_TA,165
|
|
305
310
|
yellowdog_client/model/role_search.py,sha256=SL8rngS-BWoqaZ4WtwiScS12Y7JOpfG-itbpPk7qxBc,332
|
|
306
311
|
yellowdog_client/model/role_summary.py,sha256=fkyZ_pLapNbQM67bSgX60kt20WN7hYCWA0j-1zwzIPc,202
|
|
307
|
-
yellowdog_client/model/run_specification.py,sha256=
|
|
312
|
+
yellowdog_client/model/run_specification.py,sha256=b9ysf4ocZIQ91ZuS6vGwLiS5dTyODN900MejvdQCNDg,3214
|
|
308
313
|
yellowdog_client/model/s3_namespace_storage_configuration.py,sha256=yUIsBlg2VlMD3ebrcvlfn9kjhztupkLwRfV3mmDlrng,380
|
|
309
314
|
yellowdog_client/model/services_schema.py,sha256=fyKPI-uu4ii05Rg25EPGrS7AdpKFxqf6Bd-J8hiQMXE,2067
|
|
310
315
|
yellowdog_client/model/set_password_request.py,sha256=SjOBrJBGVchr_rQqN2fhT3WYSdB5ZTmU9jtHx5B3-p0,145
|
|
@@ -325,7 +330,7 @@ yellowdog_client/model/sub_region.py,sha256=a7s77s6S-Xu--uJV86j8exmt9uWGYDTSYbiv
|
|
|
325
330
|
yellowdog_client/model/sub_region_search.py,sha256=Jv3oOL4FKgQ8lP_Vo1HvjpUcckFg-Xo-KE1JTztGHQA,391
|
|
326
331
|
yellowdog_client/model/tagged.py,sha256=QadD2tpNA2FuZStuFxvGM8LWZq1ivtzyz4OuktQ_IQI,172
|
|
327
332
|
yellowdog_client/model/tail_logs_request.py,sha256=qiArPx0DAb07a46NoGyKFS-52_TMFzNZ_81LjQO3JtA,333
|
|
328
|
-
yellowdog_client/model/task.py,sha256=
|
|
333
|
+
yellowdog_client/model/task.py,sha256=FZ2bQqxJJ3n4HhNKmFCd9GORD0T1GXpLIXq38rIgKB4,3188
|
|
329
334
|
yellowdog_client/model/task_data.py,sha256=mG8Yrg6laqJEGKa3I3yN2ZzT2eHzpVO9U4tPi9PKo8I,286
|
|
330
335
|
yellowdog_client/model/task_data_input.py,sha256=ntlSr23aDdFR9AxEp0paWshBMrSythBksg3RYEIXBKg,105
|
|
331
336
|
yellowdog_client/model/task_data_output.py,sha256=8DAPuveK43HxWBQE7--n4E_c115gAzpMhffLW4DDWkI,137
|
|
@@ -343,6 +348,7 @@ yellowdog_client/model/task_output_source.py,sha256=-_5cMlfvMXY5ehBDF4lKKxW6Iu26
|
|
|
343
348
|
yellowdog_client/model/task_search.py,sha256=2FakY4abnkclo6orZXJYtNI76vRxB8kSJY7EO6PjiAE,702
|
|
344
349
|
yellowdog_client/model/task_status.py,sha256=aN5icJ39UULR8pZhuLtK-8lYS1ajAUwyiQyZ_KImymI,1554
|
|
345
350
|
yellowdog_client/model/task_summary.py,sha256=GN__WCspp6rDcE627KsnFTruIt4r4XiP-8RQ7DhTMfI,294
|
|
351
|
+
yellowdog_client/model/task_working_time.py,sha256=V7MQvlvA0GCevug2cNstTu4QekGiJllIuISmBHRrafU,257
|
|
346
352
|
yellowdog_client/model/track.py,sha256=GnAlxEIrwQ9qQycTOX4TmkyemNiboZ-3JwGFkzWSLx8,286
|
|
347
353
|
yellowdog_client/model/track_search.py,sha256=z-t8uQBgoku4G14hpkIKRd7x5cElCNonEU3AfiuytZc,320
|
|
348
354
|
yellowdog_client/model/transfer_status_response.py,sha256=wE2-4kdyRtxPHAoaUqH69J33AsNIhKLV11rDiMbCNYM,341
|
|
@@ -362,7 +368,7 @@ yellowdog_client/model/work_requirement_dashboard_summary.py,sha256=BeiBs92lS1In
|
|
|
362
368
|
yellowdog_client/model/work_requirement_search.py,sha256=74PkNvc8mJSKuE9_IAdoNdLZTKos57gBxLagVmTte6w,674
|
|
363
369
|
yellowdog_client/model/work_requirement_status.py,sha256=JXFDJLakCmpUwv1R6j97lfU_YN7Ppb4YRvhYtWqclkA,1434
|
|
364
370
|
yellowdog_client/model/work_requirement_summary.py,sha256=xuEWKHTRuG7NIR0jjqRlBMBMNWALUH0iqMLX4RldXNE,1480
|
|
365
|
-
yellowdog_client/model/worker.py,sha256=
|
|
371
|
+
yellowdog_client/model/worker.py,sha256=kk8o6F-W0mrYyYvSboLYFHKQEytKyL2_tnW7KSUFk_8,1198
|
|
366
372
|
yellowdog_client/model/worker_action.py,sha256=58HCgRGrOVIsz3aKPdwGrY51w5LQQwFlVPKBQ6808Wg,520
|
|
367
373
|
yellowdog_client/model/worker_pool.py,sha256=1dPTMPzXmqrlJq2PKo294Ay7OgmkZn_jO7qWVppS0Uk,255
|
|
368
374
|
yellowdog_client/model/worker_pool_dashboard_summary.py,sha256=-jdJ0azze8gi9S0YcPmU9dUVw8hRS2ZQ7fHQNhdeHys,253
|
|
@@ -468,8 +474,8 @@ yellowdog_client/usage/__init__.py,sha256=XQwRJqTdxKZa1QUTsxBEL0TqQJeQHGyPklFeqc
|
|
|
468
474
|
yellowdog_client/usage/allowances_client.py,sha256=H6n63jXjT4OwuWJgFUXSjSmvGTZz9uspy3kj3upinaA,1337
|
|
469
475
|
yellowdog_client/usage/allowances_client_impl.py,sha256=nQPnSzJKhL3WvyCn5fmiDkwE84xZryH9YvV5Z1GjU4M,2061
|
|
470
476
|
yellowdog_client/usage/allowances_service_proxy.py,sha256=uO6LWnpjIzUcZTGdOxPXn7SyYX7NMRqO5KUiHUGr490,1320
|
|
471
|
-
yellowdog_sdk-11.
|
|
472
|
-
yellowdog_sdk-11.
|
|
473
|
-
yellowdog_sdk-11.
|
|
474
|
-
yellowdog_sdk-11.
|
|
475
|
-
yellowdog_sdk-11.
|
|
477
|
+
yellowdog_sdk-11.8.0.dist-info/licenses/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
|
|
478
|
+
yellowdog_sdk-11.8.0.dist-info/METADATA,sha256=7TxSTAo8VMKSlPV0_CwJ3EtUT7HOrLcSlNJdNRcfIwg,3239
|
|
479
|
+
yellowdog_sdk-11.8.0.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
480
|
+
yellowdog_sdk-11.8.0.dist-info/top_level.txt,sha256=6PH16DcoqpYHhQ5A0UJOjf0tg-1rTrNC9C2CLqCMuFo,26
|
|
481
|
+
yellowdog_sdk-11.8.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|