yellowdog-sdk 9.3.1__py3-none-any.whl → 9.3.3__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/compute/compute_client.py +29 -1
- yellowdog_client/compute/compute_client_impl.py +16 -1
- yellowdog_client/compute/compute_service_proxy.py +17 -2
- yellowdog_client/model/__init__.py +6 -0
- yellowdog_client/model/compute_requirement_summary_search.py +1 -0
- yellowdog_client/model/compute_requirement_template_search.py +14 -0
- yellowdog_client/model/compute_source_template_search.py +13 -0
- yellowdog_client/model/dashboard_request.py +7 -0
- yellowdog_client/model/machine_image_family_search.py +1 -0
- yellowdog_client/model/work_requirement_search.py +1 -0
- yellowdog_client/model/worker_pool_search.py +1 -0
- {yellowdog_sdk-9.3.1.dist-info → yellowdog_sdk-9.3.3.dist-info}/METADATA +1 -1
- {yellowdog_sdk-9.3.1.dist-info → yellowdog_sdk-9.3.3.dist-info}/RECORD +17 -14
- {yellowdog_sdk-9.3.1.dist-info → yellowdog_sdk-9.3.3.dist-info}/WHEEL +0 -0
- {yellowdog_sdk-9.3.1.dist-info → yellowdog_sdk-9.3.3.dist-info}/licenses/LICENSE +0 -0
- {yellowdog_sdk-9.3.1.dist-info → yellowdog_sdk-9.3.3.dist-info}/top_level.txt +0 -0
yellowdog_client/_version.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = '9.3.
|
|
1
|
+
__version__ = '9.3.3' # YEL-13550
|
|
@@ -6,7 +6,7 @@ from typing import List, Optional
|
|
|
6
6
|
from .compute_requirement_helper import ComputeRequirementHelper
|
|
7
7
|
from yellowdog_client.common import Closeable, SearchClient
|
|
8
8
|
from yellowdog_client.common.server_sent_events import SubscriptionEventListener
|
|
9
|
-
from yellowdog_client.model import BestComputeSourceReport, ComputeRequirement, ComputeRequirementSearch, ComputeRequirementSummary, ComputeRequirementSummarySearch, ComputeRequirementTemplate, ComputeRequirementTemplateSummary, ComputeRequirementTemplateTestResult, ComputeRequirementTemplateUsage, ComputeSourceTemplate, ComputeSourceTemplateSummary, Instance, InstanceId, InstanceSearch
|
|
9
|
+
from yellowdog_client.model import BestComputeSourceReport, ComputeRequirement, ComputeRequirementSearch, ComputeRequirementSummary, ComputeRequirementSummarySearch, ComputeRequirementTemplate, ComputeRequirementTemplateSearch, ComputeRequirementTemplateSummary, ComputeRequirementTemplateTestResult, ComputeRequirementTemplateUsage, ComputeSourceTemplate, ComputeSourceTemplateSearch, ComputeSourceTemplateSummary, Instance, InstanceId, InstanceSearch
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
class ComputeClient(ABC, Closeable):
|
|
@@ -403,8 +403,24 @@ class ComputeClient(ABC, Closeable):
|
|
|
403
403
|
def get_compute_source_template(self, compute_source_template_id: str) -> ComputeSourceTemplate:
|
|
404
404
|
pass
|
|
405
405
|
|
|
406
|
+
@abstractmethod
|
|
407
|
+
def get_compute_source_template_by_name(self, namespace: str, compute_source_template_name: str) -> ComputeSourceTemplate:
|
|
408
|
+
pass
|
|
409
|
+
|
|
406
410
|
@abstractmethod
|
|
407
411
|
def find_all_compute_source_templates(self) -> List[ComputeSourceTemplateSummary]:
|
|
412
|
+
"""@deprecated use #getComputeSourceTemplates(ComputeSourceTemplateSearch) instead."""
|
|
413
|
+
pass
|
|
414
|
+
|
|
415
|
+
@abstractmethod
|
|
416
|
+
def get_compute_source_templates(self, search: ComputeSourceTemplateSearch) -> SearchClient[ComputeSourceTemplateSummary]:
|
|
417
|
+
"""
|
|
418
|
+
Returns a search client for searching compute source templates.
|
|
419
|
+
|
|
420
|
+
:param search: the search object to filter & sort results
|
|
421
|
+
:return: a search client for searching compute source templates.
|
|
422
|
+
"""
|
|
423
|
+
|
|
408
424
|
pass
|
|
409
425
|
|
|
410
426
|
@abstractmethod
|
|
@@ -436,11 +452,23 @@ class ComputeClient(ABC, Closeable):
|
|
|
436
452
|
"""
|
|
437
453
|
Returns summaries of all existing compute requirement templates within the system for the requesting user.
|
|
438
454
|
|
|
455
|
+
@deprecated use #getComputeRequirementTemplates(ComputeRequirementTemplateSearch) instead.
|
|
439
456
|
:return: a list of compute requirement template summaries
|
|
440
457
|
"""
|
|
441
458
|
|
|
442
459
|
pass
|
|
443
460
|
|
|
461
|
+
@abstractmethod
|
|
462
|
+
def get_compute_requirement_templates(self, search: ComputeRequirementTemplateSearch) -> SearchClient[ComputeRequirementTemplateSummary]:
|
|
463
|
+
"""
|
|
464
|
+
Returns a search client for searching compute requirement templates.
|
|
465
|
+
|
|
466
|
+
:param search: the search object to filter & sort results
|
|
467
|
+
:return: a search client for searching compute requirement templates.
|
|
468
|
+
"""
|
|
469
|
+
|
|
470
|
+
pass
|
|
471
|
+
|
|
444
472
|
@abstractmethod
|
|
445
473
|
def provision_compute_requirement_template(self, compute_requirement_template_usage: ComputeRequirementTemplateUsage) -> ComputeRequirement:
|
|
446
474
|
"""
|
|
@@ -4,7 +4,7 @@ from yellowdog_client.common import SearchClient
|
|
|
4
4
|
from yellowdog_client.common.server_sent_events import SubscriptionEventListener
|
|
5
5
|
from yellowdog_client.common.server_sent_events import SubscriptionManager
|
|
6
6
|
from yellowdog_client.model import BestComputeSourceReport, ComputeRequirementSearch, SliceReference, Slice, \
|
|
7
|
-
InstanceSearch, InstanceId
|
|
7
|
+
InstanceSearch, InstanceId, ComputeSourceTemplateSearch, ComputeRequirementTemplateSearch
|
|
8
8
|
from yellowdog_client.model import ComputeRequirement, ComputeRequirementTemplateUsage
|
|
9
9
|
from yellowdog_client.model import ComputeRequirementStatus
|
|
10
10
|
from yellowdog_client.model import ComputeRequirementTemplateSummary
|
|
@@ -193,9 +193,18 @@ class ComputeClientImpl(ComputeClient):
|
|
|
193
193
|
def get_compute_source_template(self, compute_source_template_id: str) -> ComputeSourceTemplate:
|
|
194
194
|
return self.__service_proxy.get_compute_source_template_by_id(compute_source_template_id)
|
|
195
195
|
|
|
196
|
+
def get_compute_source_template_by_name(self, namespace: str, compute_source_template_name: str) -> ComputeSourceTemplate:
|
|
197
|
+
return self.__service_proxy.get_compute_source_template_by_name(namespace, compute_source_template_name)
|
|
198
|
+
|
|
196
199
|
def find_all_compute_source_templates(self) -> List[ComputeSourceTemplateSummary]:
|
|
197
200
|
return self.__service_proxy.find_all_compute_source_templates()
|
|
198
201
|
|
|
202
|
+
def get_compute_source_templates(self, search: ComputeSourceTemplateSearch) -> SearchClient[ComputeSourceTemplateSummary]:
|
|
203
|
+
def get_next_slice_function(slice_reference: SliceReference) -> Slice[ComputeSourceTemplateSummary]:
|
|
204
|
+
return self.__service_proxy.search_compute_source_templates(search, slice_reference)
|
|
205
|
+
|
|
206
|
+
return SearchClient(get_next_slice_function)
|
|
207
|
+
|
|
199
208
|
def add_compute_requirement_template(self, template: ComputeRequirementTemplate) -> ComputeRequirementTemplate:
|
|
200
209
|
return self.__service_proxy.add_compute_requirement_template(template)
|
|
201
210
|
|
|
@@ -223,6 +232,12 @@ class ComputeClientImpl(ComputeClient):
|
|
|
223
232
|
def find_all_compute_requirement_templates(self) -> List[ComputeRequirementTemplateSummary]:
|
|
224
233
|
return self.__service_proxy.find_all_compute_requirement_templates()
|
|
225
234
|
|
|
235
|
+
def get_compute_requirement_templates(self, search: ComputeRequirementTemplateSearch) -> SearchClient[ComputeRequirementTemplateSummary]:
|
|
236
|
+
def get_next_slice_function(slice_reference: SliceReference) -> Slice[ComputeRequirementTemplateSummary]:
|
|
237
|
+
return self.__service_proxy.search_compute_requirement_templates(search, slice_reference)
|
|
238
|
+
|
|
239
|
+
return SearchClient(get_next_slice_function)
|
|
240
|
+
|
|
226
241
|
def provision_compute_requirement_template(self,
|
|
227
242
|
template_request: ComputeRequirementTemplateUsage) -> ComputeRequirement:
|
|
228
243
|
return self.__service_proxy.provision_compute_requirement_template(template_request)
|
|
@@ -3,7 +3,8 @@ from typing import List
|
|
|
3
3
|
from yellowdog_client.common import Proxy
|
|
4
4
|
from yellowdog_client.common.server_sent_events.sse4python import EventSource
|
|
5
5
|
from yellowdog_client.model import ComputeRequirementTemplate, ComputeRequirementStatus, ComputeRequirementSearch, \
|
|
6
|
-
SliceReference, Slice, InstanceSearch, Instance, InstanceId
|
|
6
|
+
SliceReference, Slice, InstanceSearch, Instance, InstanceId, ComputeRequirementTemplateSearch, \
|
|
7
|
+
ComputeSourceTemplateSearch
|
|
7
8
|
from yellowdog_client.model import InstanceStatus, \
|
|
8
9
|
ComputeRequirement, ComputeRequirementTemplateSummary, ComputeSourceTemplate, ComputeRequirementTemplateUsage, \
|
|
9
10
|
ComputeSourceTemplateSummary, ComputeRequirementTemplateTestResult, BestComputeSourceReport, \
|
|
@@ -84,9 +85,18 @@ class ComputeServiceProxy:
|
|
|
84
85
|
def get_compute_source_template_by_id(self, compute_source_template_id: str) -> ComputeSourceTemplate:
|
|
85
86
|
return self._proxy.get(ComputeSourceTemplate, "templates/sources/%s" % compute_source_template_id)
|
|
86
87
|
|
|
88
|
+
def get_compute_source_template_by_name(self, namespace, compute_source_template_name) -> ComputeSourceTemplate:
|
|
89
|
+
return self._proxy.get(ComputeSourceTemplate, "namespaces/%s/templates/sources/%s" % (namespace, compute_source_template_name))
|
|
90
|
+
|
|
87
91
|
def find_all_compute_source_templates(self) -> List[ComputeSourceTemplateSummary]:
|
|
88
92
|
return self._proxy.get(List[ComputeSourceTemplateSummary], "templates/sources")
|
|
89
93
|
|
|
94
|
+
def search_compute_source_templates(self, search: ComputeSourceTemplateSearch, slice_reference: SliceReference) -> Slice[ComputeSourceTemplateSummary]:
|
|
95
|
+
params = self._proxy.to_params(search, slice_reference)
|
|
96
|
+
params["sliced"] = "true"
|
|
97
|
+
return self._proxy.get(Slice[ComputeSourceTemplateSummary], "templates/sources", params)
|
|
98
|
+
|
|
99
|
+
|
|
90
100
|
def add_compute_requirement_template(
|
|
91
101
|
self,
|
|
92
102
|
template: ComputeRequirementTemplate
|
|
@@ -106,11 +116,16 @@ class ComputeServiceProxy:
|
|
|
106
116
|
return self._proxy.get(ComputeRequirementTemplate, "templates/requirements/%s" % template_id)
|
|
107
117
|
|
|
108
118
|
def get_compute_requirement_template_by_name(self, namespace: str, name: str) -> ComputeRequirementTemplate:
|
|
109
|
-
return self._proxy.get(ComputeRequirementTemplate, "templates/requirements/%s
|
|
119
|
+
return self._proxy.get(ComputeRequirementTemplate, "namespaces/%s/templates/requirements/%s" % (namespace, name))
|
|
110
120
|
|
|
111
121
|
def find_all_compute_requirement_templates(self) -> List[ComputeRequirementTemplateSummary]:
|
|
112
122
|
return self._proxy.get(List[ComputeRequirementTemplateSummary], "templates/requirements")
|
|
113
123
|
|
|
124
|
+
def search_compute_requirement_templates(self, search: ComputeRequirementTemplateSearch, slice_reference: SliceReference) -> Slice[ComputeRequirementTemplateSummary]:
|
|
125
|
+
params = self._proxy.to_params(search, slice_reference)
|
|
126
|
+
params["sliced"] = "true"
|
|
127
|
+
return self._proxy.get(Slice[ComputeRequirementTemplateSummary], "templates/requirements", params)
|
|
128
|
+
|
|
114
129
|
def provision_compute_requirement_template(self, usage: ComputeRequirementTemplateUsage) -> ComputeRequirement:
|
|
115
130
|
return self._proxy.post(ComputeRequirement, usage, "templates/provision")
|
|
116
131
|
|
|
@@ -86,6 +86,7 @@ from .compute_requirement_summary import ComputeRequirementSummary
|
|
|
86
86
|
from .compute_requirement_summary_search import ComputeRequirementSummarySearch
|
|
87
87
|
from .compute_requirement_supported_operations import ComputeRequirementSupportedOperations
|
|
88
88
|
from .compute_requirement_template import ComputeRequirementTemplate
|
|
89
|
+
from .compute_requirement_template_search import ComputeRequirementTemplateSearch
|
|
89
90
|
from .compute_requirement_template_summary import ComputeRequirementTemplateSummary
|
|
90
91
|
from .compute_requirement_template_test_result import ComputeRequirementTemplateTestResult
|
|
91
92
|
from .compute_requirement_template_usage import ComputeRequirementTemplateUsage
|
|
@@ -97,6 +98,7 @@ from .compute_source_exhaustion import ComputeSourceExhaustion
|
|
|
97
98
|
from .compute_source_exhaustion_status import ComputeSourceExhaustionStatus
|
|
98
99
|
from .compute_source_status import ComputeSourceStatus
|
|
99
100
|
from .compute_source_template import ComputeSourceTemplate
|
|
101
|
+
from .compute_source_template_search import ComputeSourceTemplateSearch
|
|
100
102
|
from .compute_source_template_summary import ComputeSourceTemplateSummary
|
|
101
103
|
from .compute_source_traits import ComputeSourceTraits
|
|
102
104
|
from .compute_source_traits_filter import ComputeSourceTraitsFilter
|
|
@@ -110,6 +112,7 @@ from .create_namespace_request import CreateNamespaceRequest
|
|
|
110
112
|
from .credential import Credential
|
|
111
113
|
from .credential_availability import CredentialAvailability
|
|
112
114
|
from .currency import Currency
|
|
115
|
+
from .dashboard_request import DashboardRequest
|
|
113
116
|
from .double_range import DoubleRange
|
|
114
117
|
from .email_change_request import EmailChangeRequest
|
|
115
118
|
from .error_response import ErrorResponse
|
|
@@ -403,6 +406,7 @@ __all__ = [
|
|
|
403
406
|
"ComputeRequirementSummarySearch",
|
|
404
407
|
"ComputeRequirementSupportedOperations",
|
|
405
408
|
"ComputeRequirementTemplate",
|
|
409
|
+
"ComputeRequirementTemplateSearch",
|
|
406
410
|
"ComputeRequirementTemplateSummary",
|
|
407
411
|
"ComputeRequirementTemplateTestResult",
|
|
408
412
|
"ComputeRequirementTemplateUsage",
|
|
@@ -414,6 +418,7 @@ __all__ = [
|
|
|
414
418
|
"ComputeSourceExhaustionStatus",
|
|
415
419
|
"ComputeSourceStatus",
|
|
416
420
|
"ComputeSourceTemplate",
|
|
421
|
+
"ComputeSourceTemplateSearch",
|
|
417
422
|
"ComputeSourceTemplateSummary",
|
|
418
423
|
"ComputeSourceTraits",
|
|
419
424
|
"ComputeSourceTraitsFilter",
|
|
@@ -427,6 +432,7 @@ __all__ = [
|
|
|
427
432
|
"Credential",
|
|
428
433
|
"CredentialAvailability",
|
|
429
434
|
"Currency",
|
|
435
|
+
"DashboardRequest",
|
|
430
436
|
"DoubleRange",
|
|
431
437
|
"EmailChangeRequest",
|
|
432
438
|
"ErrorResponse",
|
|
@@ -10,6 +10,7 @@ from .sort_direction import SortDirection
|
|
|
10
10
|
class ComputeRequirementSummarySearch:
|
|
11
11
|
name: Optional[str] = None
|
|
12
12
|
namespace: Optional[str] = None
|
|
13
|
+
namespaces: Optional[List[str]] = None
|
|
13
14
|
tag: Optional[str] = None
|
|
14
15
|
statuses: Optional[List[ComputeRequirementStatus]] = None
|
|
15
16
|
createdTime: Optional[InstantRange] = None
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
from dataclasses import dataclass
|
|
2
|
+
from typing import List, Optional
|
|
3
|
+
|
|
4
|
+
from .sort_direction import SortDirection
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
@dataclass
|
|
8
|
+
class ComputeRequirementTemplateSearch:
|
|
9
|
+
sortField: Optional[str] = None
|
|
10
|
+
sortDirection: Optional[SortDirection] = None
|
|
11
|
+
name: Optional[str] = None
|
|
12
|
+
namespaces: Optional[List[str]] = None
|
|
13
|
+
type: Optional[List[str]] = None
|
|
14
|
+
strategyType: Optional[List[str]] = None
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
from dataclasses import dataclass
|
|
2
|
+
from typing import List, Optional
|
|
3
|
+
|
|
4
|
+
from .sort_direction import SortDirection
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
@dataclass
|
|
8
|
+
class ComputeSourceTemplateSearch:
|
|
9
|
+
sortField: Optional[str] = None
|
|
10
|
+
name: Optional[str] = None
|
|
11
|
+
sortDirection: Optional[SortDirection] = None
|
|
12
|
+
namespaces: Optional[List[str]] = None
|
|
13
|
+
sourceType: Optional[str] = None
|
|
@@ -14,6 +14,7 @@ class MachineImageFamilySearch:
|
|
|
14
14
|
sortDirection: Optional[SortDirection] = None
|
|
15
15
|
includePublic: bool = False
|
|
16
16
|
namespace: Optional[str] = None
|
|
17
|
+
namespaces: Optional[List[str]] = None
|
|
17
18
|
familyName: Optional[str] = None
|
|
18
19
|
groupName: Optional[str] = None
|
|
19
20
|
osType: Optional[ImageOsType] = None
|
|
@@ -9,6 +9,7 @@ from .work_requirement_status import WorkRequirementStatus
|
|
|
9
9
|
@dataclass
|
|
10
10
|
class WorkRequirementSearch:
|
|
11
11
|
namespace: Optional[str] = None
|
|
12
|
+
namespaces: Optional[List[str]] = None
|
|
12
13
|
name: Optional[str] = None
|
|
13
14
|
tag: Optional[str] = None
|
|
14
15
|
statuses: Optional[List[WorkRequirementStatus]] = None
|
|
@@ -9,6 +9,7 @@ from .worker_pool_status import WorkerPoolStatus
|
|
|
9
9
|
@dataclass
|
|
10
10
|
class WorkerPoolSearch:
|
|
11
11
|
namespace: Optional[str] = None
|
|
12
|
+
namespaces: Optional[List[str]] = None
|
|
12
13
|
name: Optional[str] = None
|
|
13
14
|
type: Optional[str] = None
|
|
14
15
|
statuses: Optional[List[WorkerPoolStatus]] = None
|
|
@@ -1,6 +1,6 @@
|
|
|
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=SdYOdmUnt3vY8Y4NVpl-YbEkdYF5Rf-k3mGkk9bPWEQ,34
|
|
4
4
|
yellowdog_client/client_collection.py,sha256=VSEzjf6iR1qCQ0YGLyDq_Kgvw8r832QDwTp6-MLB4Vs,388
|
|
5
5
|
yellowdog_client/platform_client.py,sha256=yCzKsOQKllnfzwP9bG-JGtvOdvY7EaEQzFsgX3ERzVY,7476
|
|
6
6
|
yellowdog_client/account/__init__.py,sha256=DiLL3uSMyVlAKWsncX0k5Ioc2hw87HQoEkSYO0ro0fg,456
|
|
@@ -41,10 +41,10 @@ yellowdog_client/common/server_sent_events/sse4python/event_source_state.py,sha2
|
|
|
41
41
|
yellowdog_client/common/server_sent_events/sse4python/server_sent_event.py,sha256=Vix4z5BbJVyX6vvUVMcNhHfBmrDSpn237-S1bs4B5-U,271
|
|
42
42
|
yellowdog_client/common/server_sent_events/sse4python/sse_stream.py,sha256=YF4onI3dlb0pVm2V5nSR0ZiPGfzoDLARu_Gyx7ZUoiU,5088
|
|
43
43
|
yellowdog_client/compute/__init__.py,sha256=CsE9SMIMubIZStR5lPKq6h9r_7x9zkmd9oUGcVVKomU,485
|
|
44
|
-
yellowdog_client/compute/compute_client.py,sha256=
|
|
45
|
-
yellowdog_client/compute/compute_client_impl.py,sha256=
|
|
44
|
+
yellowdog_client/compute/compute_client.py,sha256=96tqhGginJRTzdZtjmL1buycRP9DF8-tXL_lXjSBiz8,22040
|
|
45
|
+
yellowdog_client/compute/compute_client_impl.py,sha256=ZsSIAU9DwTRqSyveFwSr4nX47tHoCI5cyddCpN6f2Ic,16578
|
|
46
46
|
yellowdog_client/compute/compute_requirement_helper.py,sha256=Ia44T-cwvvSvOD3n2lbmJroEiyc6DmM1zVPUgAt0VNA,4416
|
|
47
|
-
yellowdog_client/compute/compute_service_proxy.py,sha256=
|
|
47
|
+
yellowdog_client/compute/compute_service_proxy.py,sha256=gGuu-DodeRMf-0S3t2-mg2GtHa27eiH1syPd8eGS3Dw,7973
|
|
48
48
|
yellowdog_client/compute/predicated_compute_subscription_event_listener.py,sha256=psaVEvOMkze5dy95uW02VeQePeKXkQmOwV1i18tU8Zg,2153
|
|
49
49
|
yellowdog_client/images/__init__.py,sha256=E5EeflQVqAIlff0ZQzQs5cCQKFOqmDn3ARAla0Hbr7s,823
|
|
50
50
|
yellowdog_client/images/images_client.py,sha256=dci0RSVeVVgkrH7-Ag1ppDDoh7mVKKezTKKpe2WoiNg,2311
|
|
@@ -53,7 +53,7 @@ yellowdog_client/images/images_service_proxy.py,sha256=eyP4u6FoIH1WJvNM_m8tacTCs
|
|
|
53
53
|
yellowdog_client/images/page.py,sha256=UIvlxvzdcfnKvbcq2Cn6IB7ZtQMc3dzcBTUfElvVPwQ,391
|
|
54
54
|
yellowdog_client/images/pageable.py,sha256=msD8uGGJ2F5jEqTNDYaFrh6z6drlxOXZ1AmB0T3edM0,296
|
|
55
55
|
yellowdog_client/images/sort.py,sha256=YS05DlIRg1Cm3QLBi6KFjFdB3g-b3WrqFFitlMJUEMM,167
|
|
56
|
-
yellowdog_client/model/__init__.py,sha256=
|
|
56
|
+
yellowdog_client/model/__init__.py,sha256=fyaODrUKYeKsX0-ZBnq1-gBNMgRFjqzYmrHjl0QJ8Oc,26403
|
|
57
57
|
yellowdog_client/model/access_delegate.py,sha256=gZYX7Hqw_eBzBIHzbxyZfrhko0xZIsPCsf4gSzFalwc,568
|
|
58
58
|
yellowdog_client/model/account.py,sha256=r_-7J-JjjMcQPZzaQ4_o9y6XY7-GMPRLWt9mGOucYU0,394
|
|
59
59
|
yellowdog_client/model/account_allowance.py,sha256=c-MkSSRLB5Y5TMDZl5h5fipj4vzLLlO_AQXPeRJ0AYw,1021
|
|
@@ -139,9 +139,10 @@ yellowdog_client/model/compute_requirement_static_template.py,sha256=mBlu2CxRte4
|
|
|
139
139
|
yellowdog_client/model/compute_requirement_static_template_test_result.py,sha256=69UOaCgsUay-0n2k8oYGufbRzCRw_jOqRBWsTIV9p78,504
|
|
140
140
|
yellowdog_client/model/compute_requirement_status.py,sha256=hYsSEg1d5FPhQWRyTr9lE0HzMRfKg3t0YbMIb515rRU,2115
|
|
141
141
|
yellowdog_client/model/compute_requirement_summary.py,sha256=Li0xx475FMKcg6RmCcg7UKMvSIBe7f9MePbf1HsrUyQ,1549
|
|
142
|
-
yellowdog_client/model/compute_requirement_summary_search.py,sha256=
|
|
142
|
+
yellowdog_client/model/compute_requirement_summary_search.py,sha256=dMu-W6bOG6HC2jkuEU6ChhcjS4bNbDCTgPbl2ArZcLk,640
|
|
143
143
|
yellowdog_client/model/compute_requirement_supported_operations.py,sha256=2CfRRA0ObNP-7hulOG19uKQDlzkA8bF_rvIQfdh7VH4,293
|
|
144
144
|
yellowdog_client/model/compute_requirement_template.py,sha256=VCQ-1ssxfqWEGTQW0ToomcLlILP6-8Kp2o_U-U0IXfU,216
|
|
145
|
+
yellowdog_client/model/compute_requirement_template_search.py,sha256=gSIvMwgL13j5JyMjritDRAd43kI0bg5e8u4GQkhfMBE,406
|
|
145
146
|
yellowdog_client/model/compute_requirement_template_summary.py,sha256=IYKLKiSYtZXBn663NDIuIR2o2xxrmzWsBHaHAvDYS8Q,320
|
|
146
147
|
yellowdog_client/model/compute_requirement_template_test_result.py,sha256=sXE-GaByVfDeNEsuicWsui5KB_tU7HT5G7tqBT8BkaE,146
|
|
147
148
|
yellowdog_client/model/compute_requirement_template_usage.py,sha256=PLmrxoGqdLR0GmwJ3aJt-aLUMFgPtj27lpdARKFQMNM,446
|
|
@@ -153,6 +154,7 @@ yellowdog_client/model/compute_source_exhaustion.py,sha256=MxwZRHEC1bZEjuy_OCrWN
|
|
|
153
154
|
yellowdog_client/model/compute_source_exhaustion_status.py,sha256=8pmXyeVjDiawyjT8OKPRXaW-jeNRMLRJRKA6K1G5ta8,245
|
|
154
155
|
yellowdog_client/model/compute_source_status.py,sha256=0LDLkAsnXShj98tq6lXYrMbgyejHxhkKJ9e31yMZXGU,1058
|
|
155
156
|
yellowdog_client/model/compute_source_template.py,sha256=b17ZqrLi6KgPI_lrLEibKr7HXnE41fxDQyx9NrQHC5M,471
|
|
157
|
+
yellowdog_client/model/compute_source_template_search.py,sha256=ZK0D1v8-5xCCx7SYO6fGTbPaFHEQ98g86JpcTOoiZWA,356
|
|
156
158
|
yellowdog_client/model/compute_source_template_summary.py,sha256=0-M7422qVVGl3q52Z_2eyEIF4z703wxw1TCvhJrIMXQ,370
|
|
157
159
|
yellowdog_client/model/compute_source_traits.py,sha256=QVgJ7xUJ41Xn0E__v64cj_kQz2_hC2vnj2HJLxHBjR4,268
|
|
158
160
|
yellowdog_client/model/compute_source_traits_filter.py,sha256=JNOuxeOyuj8WzcRxFxNmQmvaYOG9bJypUqZTKVrht68,269
|
|
@@ -166,6 +168,7 @@ yellowdog_client/model/create_namespace_request.py,sha256=ReZ7HkcKlbiKzjU-vtif2i
|
|
|
166
168
|
yellowdog_client/model/credential.py,sha256=fnExwd0hcjitTIgkli-hDV4Gyc08D6OIrDCLfoqW500,237
|
|
167
169
|
yellowdog_client/model/credential_availability.py,sha256=q_4Exjqz-HixCV4BJgIYmBQ_t8mK8IHAVoZnw49o9Ig,536
|
|
168
170
|
yellowdog_client/model/currency.py,sha256=Zm8uK_zwSzG_kkschrmLeJTaOJncKKuab-qrW6cUOLU,2090
|
|
171
|
+
yellowdog_client/model/dashboard_request.py,sha256=WJ2CvMwIgRo4EvnhYAiqfbFm3Pm0xUE96IH_bn6nZ_U,148
|
|
169
172
|
yellowdog_client/model/double_range.py,sha256=WWPnJbGrCKbjsD10qIJ0cenD99-LregmuAgAQqQuNE4,191
|
|
170
173
|
yellowdog_client/model/email_change_request.py,sha256=vbrmV66yPvrQmbBDXqW61dTVBHNSVBfvkAeSgD74krY,91
|
|
171
174
|
yellowdog_client/model/error_response.py,sha256=owWL4JSOg4FF5tnpmrI9qgyFGUaVbgRo6P8rP4kukbk,194
|
|
@@ -225,7 +228,7 @@ yellowdog_client/model/keyring_summary.py,sha256=B5fEdhMAhQ_CWGbhQ9DAuMxvdhAOCZr
|
|
|
225
228
|
yellowdog_client/model/long_range.py,sha256=_XdsyQhfe5vsw7NJcxOlGhkbdVBM6Mv-JYU6OWBpOHA,185
|
|
226
229
|
yellowdog_client/model/machine_image.py,sha256=tCXmjZOKhdLmvBE24C2mk6PKU2biThuDSjyRwuSwMQ0,1535
|
|
227
230
|
yellowdog_client/model/machine_image_family.py,sha256=OkFvKlgnHCBUZYtjwQYccWuhiJF6IP4E9SLaP4PixgM,1456
|
|
228
|
-
yellowdog_client/model/machine_image_family_search.py,sha256=
|
|
231
|
+
yellowdog_client/model/machine_image_family_search.py,sha256=_87X9XeRdoSjgFigAsgImE8ND2JRo0_yZyt7VQIBNlM,995
|
|
229
232
|
yellowdog_client/model/machine_image_family_summary.py,sha256=RRNV85u5w_bS7cKiqj-MyhgAZZKMdnQoSFY9sNFuLuM,1188
|
|
230
233
|
yellowdog_client/model/machine_image_group.py,sha256=dLjupIpqVJmCJV9Dssn5NvIQxDxXzhL8WjLm6FOdJTY,1182
|
|
231
234
|
yellowdog_client/model/measurement_aggregate.py,sha256=JkoToL2nR4f9ZGtjp3cLeKbsVwkmZEjONiD3ogWTtmo,248
|
|
@@ -355,7 +358,7 @@ yellowdog_client/model/user_search.py,sha256=XHEx0_yIqZnvi5A0zgvAnEbZ3oBASjqcWgM
|
|
|
355
358
|
yellowdog_client/model/waterfall_provision_strategy.py,sha256=1mAIACbWcVrsy3Bjulgh3TaPx83WoqRM443-jQ9FgaQ,727
|
|
356
359
|
yellowdog_client/model/work_requirement.py,sha256=4-kqhjS33HEjf62Z_GjcgVxHZ4Xa5c54TR1DIDgYPuY,1714
|
|
357
360
|
yellowdog_client/model/work_requirement_dashboard_summary.py,sha256=BeiBs92lS1InDuYc4yt5uuWKhoNqlfdXkk3PmyinIuc,273
|
|
358
|
-
yellowdog_client/model/work_requirement_search.py,sha256=
|
|
361
|
+
yellowdog_client/model/work_requirement_search.py,sha256=xQ6U7v7O0udd2LB79DjLzX4DqpuifIwzip7Uv17jU7Y,621
|
|
359
362
|
yellowdog_client/model/work_requirement_status.py,sha256=w_XCB-SDBJQjHnkM28UivdA53MVaAlDk0PzUcZyZYmk,1301
|
|
360
363
|
yellowdog_client/model/work_requirement_status_count.py,sha256=o1fH1l4fVzelxLAMj2fWJTVHe-9qYeIysGlVlmclsr8,265
|
|
361
364
|
yellowdog_client/model/work_requirement_summary.py,sha256=jEvsqI6IBykpP5_LAyoTiS5elHXfaQJ2Zj1FOwxQtMU,1374
|
|
@@ -365,7 +368,7 @@ yellowdog_client/model/worker_pool.py,sha256=1dPTMPzXmqrlJq2PKo294Ay7OgmkZn_jO7q
|
|
|
365
368
|
yellowdog_client/model/worker_pool_dashboard_summary.py,sha256=-jdJ0azze8gi9S0YcPmU9dUVw8hRS2ZQ7fHQNhdeHys,253
|
|
366
369
|
yellowdog_client/model/worker_pool_node_configuration.py,sha256=HaUkJIVlF-xzF931wjJnqIk5oL_71atBsgQIVqUILMo,355
|
|
367
370
|
yellowdog_client/model/worker_pool_properties.py,sha256=41_GIgO1KdzwM6qmeey5dAK8yoKTsnkfrCSCzQq4QJE,84
|
|
368
|
-
yellowdog_client/model/worker_pool_search.py,sha256=
|
|
371
|
+
yellowdog_client/model/worker_pool_search.py,sha256=zTYIkYfTpXMht5jpPWV9ApV618PnH_oQY7GOJ5cfqjA,602
|
|
369
372
|
yellowdog_client/model/worker_pool_status.py,sha256=NEOuZuuwlAa0h16Feh76qUtaJ_t26qO_AoHFjJBVWLc,1240
|
|
370
373
|
yellowdog_client/model/worker_pool_summary.py,sha256=WkdKWXlSj4K1aYvwL29wETJcpeKCv4chXx-M3SvjZfI,1447
|
|
371
374
|
yellowdog_client/model/worker_pool_token.py,sha256=aHJcumKO7CiyjqpUoognxCg9SRg6AOdZh01pBIAos74,350
|
|
@@ -465,8 +468,8 @@ yellowdog_client/usage/__init__.py,sha256=XQwRJqTdxKZa1QUTsxBEL0TqQJeQHGyPklFeqc
|
|
|
465
468
|
yellowdog_client/usage/allowances_client.py,sha256=H6n63jXjT4OwuWJgFUXSjSmvGTZz9uspy3kj3upinaA,1337
|
|
466
469
|
yellowdog_client/usage/allowances_client_impl.py,sha256=nQPnSzJKhL3WvyCn5fmiDkwE84xZryH9YvV5Z1GjU4M,2061
|
|
467
470
|
yellowdog_client/usage/allowances_service_proxy.py,sha256=uO6LWnpjIzUcZTGdOxPXn7SyYX7NMRqO5KUiHUGr490,1320
|
|
468
|
-
yellowdog_sdk-9.3.
|
|
469
|
-
yellowdog_sdk-9.3.
|
|
470
|
-
yellowdog_sdk-9.3.
|
|
471
|
-
yellowdog_sdk-9.3.
|
|
472
|
-
yellowdog_sdk-9.3.
|
|
471
|
+
yellowdog_sdk-9.3.3.dist-info/licenses/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
|
|
472
|
+
yellowdog_sdk-9.3.3.dist-info/METADATA,sha256=llLgYfGPhIhpiUFfjCekCqF8S1wydznO3wot_ssFKTE,3238
|
|
473
|
+
yellowdog_sdk-9.3.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
474
|
+
yellowdog_sdk-9.3.3.dist-info/top_level.txt,sha256=6PH16DcoqpYHhQ5A0UJOjf0tg-1rTrNC9C2CLqCMuFo,26
|
|
475
|
+
yellowdog_sdk-9.3.3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|