wandb 0.21.4__py3-none-musllinux_1_2_aarch64.whl → 0.22.1__py3-none-musllinux_1_2_aarch64.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.
Files changed (96) hide show
  1. wandb/__init__.py +1 -1
  2. wandb/__init__.pyi +3 -3
  3. wandb/_pydantic/__init__.py +12 -11
  4. wandb/_pydantic/base.py +49 -19
  5. wandb/apis/__init__.py +2 -0
  6. wandb/apis/attrs.py +2 -0
  7. wandb/apis/importers/internals/internal.py +16 -23
  8. wandb/apis/internal.py +2 -0
  9. wandb/apis/normalize.py +2 -0
  10. wandb/apis/public/__init__.py +44 -1
  11. wandb/apis/public/api.py +215 -164
  12. wandb/apis/public/artifacts.py +23 -20
  13. wandb/apis/public/const.py +2 -0
  14. wandb/apis/public/files.py +33 -24
  15. wandb/apis/public/history.py +2 -0
  16. wandb/apis/public/jobs.py +20 -18
  17. wandb/apis/public/projects.py +4 -2
  18. wandb/apis/public/query_generator.py +3 -0
  19. wandb/apis/public/registries/__init__.py +7 -0
  20. wandb/apis/public/registries/_freezable_list.py +9 -12
  21. wandb/apis/public/registries/registries_search.py +8 -6
  22. wandb/apis/public/registries/registry.py +22 -17
  23. wandb/apis/public/reports.py +2 -0
  24. wandb/apis/public/runs.py +282 -60
  25. wandb/apis/public/sweeps.py +10 -9
  26. wandb/apis/public/teams.py +2 -0
  27. wandb/apis/public/users.py +2 -0
  28. wandb/apis/public/utils.py +16 -15
  29. wandb/automations/_generated/__init__.py +54 -127
  30. wandb/automations/_generated/create_generic_webhook_integration.py +1 -7
  31. wandb/automations/_generated/fragments.py +26 -91
  32. wandb/bin/gpu_stats +0 -0
  33. wandb/bin/wandb-core +0 -0
  34. wandb/cli/beta_sync.py +9 -11
  35. wandb/errors/errors.py +3 -3
  36. wandb/proto/v3/wandb_internal_pb2.py +234 -224
  37. wandb/proto/v3/wandb_sync_pb2.py +19 -6
  38. wandb/proto/v4/wandb_internal_pb2.py +226 -224
  39. wandb/proto/v4/wandb_sync_pb2.py +10 -6
  40. wandb/proto/v5/wandb_internal_pb2.py +226 -224
  41. wandb/proto/v5/wandb_sync_pb2.py +10 -6
  42. wandb/proto/v6/wandb_base_pb2.py +3 -3
  43. wandb/proto/v6/wandb_internal_pb2.py +229 -227
  44. wandb/proto/v6/wandb_server_pb2.py +3 -3
  45. wandb/proto/v6/wandb_settings_pb2.py +3 -3
  46. wandb/proto/v6/wandb_sync_pb2.py +13 -9
  47. wandb/proto/v6/wandb_telemetry_pb2.py +3 -3
  48. wandb/sdk/artifacts/_factories.py +7 -2
  49. wandb/sdk/artifacts/_generated/__init__.py +112 -412
  50. wandb/sdk/artifacts/_generated/fragments.py +65 -0
  51. wandb/sdk/artifacts/_generated/operations.py +52 -22
  52. wandb/sdk/artifacts/_generated/run_input_artifacts.py +3 -23
  53. wandb/sdk/artifacts/_generated/run_output_artifacts.py +3 -23
  54. wandb/sdk/artifacts/_generated/type_info.py +19 -0
  55. wandb/sdk/artifacts/_gqlutils.py +47 -0
  56. wandb/sdk/artifacts/_models/__init__.py +4 -0
  57. wandb/sdk/artifacts/_models/base_model.py +20 -0
  58. wandb/sdk/artifacts/_validators.py +40 -12
  59. wandb/sdk/artifacts/artifact.py +69 -88
  60. wandb/sdk/artifacts/artifact_file_cache.py +6 -1
  61. wandb/sdk/artifacts/artifact_manifest_entry.py +61 -2
  62. wandb/sdk/artifacts/storage_handlers/gcs_handler.py +1 -1
  63. wandb/sdk/artifacts/storage_handlers/http_handler.py +1 -3
  64. wandb/sdk/artifacts/storage_handlers/local_file_handler.py +1 -1
  65. wandb/sdk/artifacts/storage_handlers/s3_handler.py +1 -1
  66. wandb/sdk/artifacts/storage_policies/_factories.py +63 -0
  67. wandb/sdk/artifacts/storage_policies/wandb_storage_policy.py +69 -124
  68. wandb/sdk/data_types/bokeh.py +5 -1
  69. wandb/sdk/data_types/image.py +17 -6
  70. wandb/sdk/interface/interface.py +41 -4
  71. wandb/sdk/interface/interface_queue.py +10 -0
  72. wandb/sdk/interface/interface_shared.py +9 -7
  73. wandb/sdk/interface/interface_sock.py +9 -3
  74. wandb/sdk/internal/_generated/__init__.py +2 -12
  75. wandb/sdk/internal/sender.py +1 -1
  76. wandb/sdk/internal/settings_static.py +2 -82
  77. wandb/sdk/launch/runner/kubernetes_runner.py +25 -20
  78. wandb/sdk/launch/utils.py +82 -1
  79. wandb/sdk/lib/progress.py +7 -4
  80. wandb/sdk/lib/service/service_client.py +5 -9
  81. wandb/sdk/lib/service/service_connection.py +39 -23
  82. wandb/sdk/mailbox/mailbox_handle.py +2 -0
  83. wandb/sdk/projects/_generated/__init__.py +12 -33
  84. wandb/sdk/wandb_init.py +31 -3
  85. wandb/sdk/wandb_login.py +53 -27
  86. wandb/sdk/wandb_run.py +5 -3
  87. wandb/sdk/wandb_settings.py +50 -13
  88. wandb/sync/sync.py +7 -2
  89. wandb/util.py +1 -1
  90. wandb/wandb_agent.py +35 -4
  91. {wandb-0.21.4.dist-info → wandb-0.22.1.dist-info}/METADATA +1 -1
  92. {wandb-0.21.4.dist-info → wandb-0.22.1.dist-info}/RECORD +818 -814
  93. wandb/sdk/artifacts/_graphql_fragments.py +0 -19
  94. {wandb-0.21.4.dist-info → wandb-0.22.1.dist-info}/WHEEL +0 -0
  95. {wandb-0.21.4.dist-info → wandb-0.22.1.dist-info}/entry_points.txt +0 -0
  96. {wandb-0.21.4.dist-info → wandb-0.22.1.dist-info}/licenses/LICENSE +0 -0
@@ -1,280 +1,5 @@
1
1
  # Generated by ariadne-codegen
2
2
 
3
- from .add_aliases import AddAliases, AddAliasesAddAliases
4
- from .artifact_by_id import ArtifactByID
5
- from .artifact_by_name import ArtifactByName, ArtifactByNameProject
6
- from .artifact_collection_membership_file_urls import (
7
- ArtifactCollectionMembershipFileUrls,
8
- ArtifactCollectionMembershipFileUrlsProject,
9
- ArtifactCollectionMembershipFileUrlsProjectArtifactCollection,
10
- ArtifactCollectionMembershipFileUrlsProjectArtifactCollectionArtifactMembership,
11
- )
12
- from .artifact_collection_membership_files import (
13
- ArtifactCollectionMembershipFiles,
14
- ArtifactCollectionMembershipFilesProject,
15
- ArtifactCollectionMembershipFilesProjectArtifactCollection,
16
- ArtifactCollectionMembershipFilesProjectArtifactCollectionArtifactMembership,
17
- )
18
- from .artifact_created_by import (
19
- ArtifactCreatedBy,
20
- ArtifactCreatedByArtifact,
21
- ArtifactCreatedByArtifactCreatedByRun,
22
- ArtifactCreatedByArtifactCreatedByRunProject,
23
- ArtifactCreatedByArtifactCreatedByUser,
24
- )
25
- from .artifact_file_urls import ArtifactFileUrls, ArtifactFileUrlsArtifact
26
- from .artifact_type import (
27
- ArtifactType,
28
- ArtifactTypeProject,
29
- ArtifactTypeProjectArtifact,
30
- ArtifactTypeProjectArtifactArtifactType,
31
- )
32
- from .artifact_used_by import (
33
- ArtifactUsedBy,
34
- ArtifactUsedByArtifact,
35
- ArtifactUsedByArtifactUsedBy,
36
- ArtifactUsedByArtifactUsedByEdges,
37
- ArtifactUsedByArtifactUsedByEdgesNode,
38
- ArtifactUsedByArtifactUsedByEdgesNodeProject,
39
- )
40
- from .artifact_version_files import (
41
- ArtifactVersionFiles,
42
- ArtifactVersionFilesProject,
43
- ArtifactVersionFilesProjectArtifactType,
44
- ArtifactVersionFilesProjectArtifactTypeArtifact,
45
- )
46
- from .artifact_via_membership_by_name import (
47
- ArtifactViaMembershipByName,
48
- ArtifactViaMembershipByNameProject,
49
- )
50
- from .create_artifact_collection_tag_assignments import (
51
- CreateArtifactCollectionTagAssignments,
52
- CreateArtifactCollectionTagAssignmentsCreateArtifactCollectionTagAssignments,
53
- CreateArtifactCollectionTagAssignmentsCreateArtifactCollectionTagAssignmentsTags,
54
- )
55
- from .delete_aliases import DeleteAliases, DeleteAliasesDeleteAliases
56
- from .delete_artifact import (
57
- DeleteArtifact,
58
- DeleteArtifactDeleteArtifact,
59
- DeleteArtifactDeleteArtifactArtifact,
60
- )
61
- from .delete_artifact_collection_tag_assignments import (
62
- DeleteArtifactCollectionTagAssignments,
63
- DeleteArtifactCollectionTagAssignmentsDeleteArtifactCollectionTagAssignments,
64
- )
65
- from .delete_artifact_portfolio import (
66
- DeleteArtifactPortfolio,
67
- DeleteArtifactPortfolioDeleteArtifactPortfolio,
68
- DeleteArtifactPortfolioDeleteArtifactPortfolioArtifactCollection,
69
- )
70
- from .delete_artifact_sequence import (
71
- DeleteArtifactSequence,
72
- DeleteArtifactSequenceDeleteArtifactSequence,
73
- DeleteArtifactSequenceDeleteArtifactSequenceArtifactCollection,
74
- )
75
- from .enums import ArtifactCollectionState, ArtifactCollectionType, ArtifactState
76
- from .fetch_artifact_manifest import (
77
- FetchArtifactManifest,
78
- FetchArtifactManifestProject,
79
- FetchArtifactManifestProjectArtifact,
80
- FetchArtifactManifestProjectArtifactCurrentManifest,
81
- FetchArtifactManifestProjectArtifactCurrentManifestFile,
82
- )
83
- from .fetch_linked_artifacts import (
84
- FetchLinkedArtifacts,
85
- FetchLinkedArtifactsArtifact,
86
- FetchLinkedArtifactsArtifactArtifactMemberships,
87
- FetchLinkedArtifactsArtifactArtifactMembershipsEdges,
88
- FetchLinkedArtifactsArtifactArtifactMembershipsEdgesNode,
89
- FetchLinkedArtifactsArtifactArtifactMembershipsEdgesNodeAliases,
90
- FetchLinkedArtifactsArtifactArtifactMembershipsEdgesNodeArtifactCollection,
91
- FetchLinkedArtifactsArtifactArtifactMembershipsEdgesNodeArtifactCollectionProject,
92
- )
93
- from .fetch_registries import (
94
- FetchRegistries,
95
- FetchRegistriesOrganization,
96
- FetchRegistriesOrganizationOrgEntity,
97
- )
98
- from .fragments import (
99
- ArtifactCollectionsFragment,
100
- ArtifactCollectionsFragmentEdges,
101
- ArtifactCollectionsFragmentEdgesNode,
102
- ArtifactCollectionsFragmentPageInfo,
103
- ArtifactFragment,
104
- ArtifactFragmentAliases,
105
- ArtifactFragmentAliasesArtifactCollection,
106
- ArtifactFragmentAliasesArtifactCollectionProject,
107
- ArtifactFragmentWithoutAliases,
108
- ArtifactFragmentWithoutAliasesArtifactSequence,
109
- ArtifactFragmentWithoutAliasesArtifactSequenceProject,
110
- ArtifactFragmentWithoutAliasesArtifactType,
111
- ArtifactFragmentWithoutAliasesCurrentManifest,
112
- ArtifactFragmentWithoutAliasesCurrentManifestFile,
113
- ArtifactFragmentWithoutAliasesTags,
114
- ArtifactPortfolioTypeFields,
115
- ArtifactSequenceTypeFields,
116
- ArtifactsFragment,
117
- ArtifactsFragmentEdges,
118
- ArtifactsFragmentPageInfo,
119
- ArtifactTypeFragment,
120
- ArtifactTypesFragment,
121
- ArtifactTypesFragmentEdges,
122
- ArtifactTypesFragmentPageInfo,
123
- FilesFragment,
124
- FilesFragmentEdges,
125
- FilesFragmentEdgesNode,
126
- FilesFragmentPageInfo,
127
- FileUrlsFragment,
128
- FileUrlsFragmentEdges,
129
- FileUrlsFragmentEdgesNode,
130
- FileUrlsFragmentPageInfo,
131
- MembershipWithArtifact,
132
- MembershipWithArtifactArtifactCollection,
133
- MembershipWithArtifactArtifactCollectionProject,
134
- RegistriesPage,
135
- RegistriesPageEdges,
136
- RegistriesPagePageInfo,
137
- RegistryCollectionsPage,
138
- RegistryCollectionsPageEdges,
139
- RegistryCollectionsPageEdgesNode,
140
- RegistryCollectionsPageEdgesNodeAliases,
141
- RegistryCollectionsPageEdgesNodeAliasesEdges,
142
- RegistryCollectionsPageEdgesNodeAliasesEdgesNode,
143
- RegistryCollectionsPageEdgesNodeDefaultArtifactType,
144
- RegistryCollectionsPageEdgesNodeProject,
145
- RegistryCollectionsPageEdgesNodeProjectEntity,
146
- RegistryCollectionsPageEdgesNodeTags,
147
- RegistryCollectionsPageEdgesNodeTagsEdges,
148
- RegistryCollectionsPageEdgesNodeTagsEdgesNode,
149
- RegistryCollectionsPagePageInfo,
150
- RegistryFragment,
151
- RegistryFragmentArtifactTypes,
152
- RegistryFragmentArtifactTypesEdges,
153
- RegistryFragmentArtifactTypesEdgesNode,
154
- RegistryVersionsPage,
155
- RegistryVersionsPageEdges,
156
- RegistryVersionsPageEdgesNode,
157
- RegistryVersionsPageEdgesNodeAliases,
158
- RegistryVersionsPageEdgesNodeArtifactCollection,
159
- RegistryVersionsPageEdgesNodeArtifactCollectionProject,
160
- RegistryVersionsPageEdgesNodeArtifactCollectionProjectEntity,
161
- RegistryVersionsPagePageInfo,
162
- )
163
- from .input_types import (
164
- ArtifactAliasInput,
165
- ArtifactCollectionAliasInput,
166
- LinkArtifactInput,
167
- TagInput,
168
- )
169
- from .link_artifact import LinkArtifact, LinkArtifactLinkArtifact
170
- from .move_artifact_collection import (
171
- MoveArtifactCollection,
172
- MoveArtifactCollectionMoveArtifactSequence,
173
- MoveArtifactCollectionMoveArtifactSequenceArtifactCollection,
174
- )
175
- from .operations import (
176
- ADD_ALIASES_GQL,
177
- ARTIFACT_BY_ID_GQL,
178
- ARTIFACT_BY_NAME_GQL,
179
- ARTIFACT_COLLECTION_MEMBERSHIP_FILE_URLS_GQL,
180
- ARTIFACT_COLLECTION_MEMBERSHIP_FILES_GQL,
181
- ARTIFACT_CREATED_BY_GQL,
182
- ARTIFACT_FILE_URLS_GQL,
183
- ARTIFACT_TYPE_GQL,
184
- ARTIFACT_USED_BY_GQL,
185
- ARTIFACT_VERSION_FILES_GQL,
186
- ARTIFACT_VIA_MEMBERSHIP_BY_NAME_GQL,
187
- CREATE_ARTIFACT_COLLECTION_TAG_ASSIGNMENTS_GQL,
188
- DELETE_ALIASES_GQL,
189
- DELETE_ARTIFACT_COLLECTION_TAG_ASSIGNMENTS_GQL,
190
- DELETE_ARTIFACT_GQL,
191
- DELETE_ARTIFACT_PORTFOLIO_GQL,
192
- DELETE_ARTIFACT_SEQUENCE_GQL,
193
- FETCH_ARTIFACT_MANIFEST_GQL,
194
- FETCH_LINKED_ARTIFACTS_GQL,
195
- FETCH_REGISTRIES_GQL,
196
- LINK_ARTIFACT_GQL,
197
- MOVE_ARTIFACT_COLLECTION_GQL,
198
- PROJECT_ARTIFACT_COLLECTION_GQL,
199
- PROJECT_ARTIFACT_COLLECTIONS_GQL,
200
- PROJECT_ARTIFACT_TYPE_GQL,
201
- PROJECT_ARTIFACT_TYPES_GQL,
202
- PROJECT_ARTIFACTS_GQL,
203
- REGISTRY_COLLECTIONS_GQL,
204
- REGISTRY_VERSIONS_GQL,
205
- RUN_INPUT_ARTIFACTS_GQL,
206
- RUN_OUTPUT_ARTIFACTS_GQL,
207
- UNLINK_ARTIFACT_GQL,
208
- UPDATE_ARTIFACT_GQL,
209
- UPDATE_ARTIFACT_PORTFOLIO_GQL,
210
- UPDATE_ARTIFACT_SEQUENCE_GQL,
211
- )
212
- from .project_artifact_collection import (
213
- ProjectArtifactCollection,
214
- ProjectArtifactCollectionProject,
215
- ProjectArtifactCollectionProjectArtifactType,
216
- ProjectArtifactCollectionProjectArtifactTypeArtifactCollection,
217
- ProjectArtifactCollectionProjectArtifactTypeArtifactCollectionAliases,
218
- ProjectArtifactCollectionProjectArtifactTypeArtifactCollectionAliasesEdges,
219
- ProjectArtifactCollectionProjectArtifactTypeArtifactCollectionAliasesEdgesNode,
220
- ProjectArtifactCollectionProjectArtifactTypeArtifactCollectionAliasesPageInfo,
221
- ProjectArtifactCollectionProjectArtifactTypeArtifactCollectionTags,
222
- ProjectArtifactCollectionProjectArtifactTypeArtifactCollectionTagsEdges,
223
- ProjectArtifactCollectionProjectArtifactTypeArtifactCollectionTagsEdgesNode,
224
- ProjectArtifactCollectionProjectArtifactTypeArtifactSequence,
225
- )
226
- from .project_artifact_collections import (
227
- ProjectArtifactCollections,
228
- ProjectArtifactCollectionsProject,
229
- ProjectArtifactCollectionsProjectArtifactType,
230
- )
231
- from .project_artifact_type import ProjectArtifactType, ProjectArtifactTypeProject
232
- from .project_artifact_types import ProjectArtifactTypes, ProjectArtifactTypesProject
233
- from .project_artifacts import (
234
- ProjectArtifacts,
235
- ProjectArtifactsProject,
236
- ProjectArtifactsProjectArtifactType,
237
- ProjectArtifactsProjectArtifactTypeArtifactCollection,
238
- )
239
- from .registry_collections import (
240
- RegistryCollections,
241
- RegistryCollectionsOrganization,
242
- RegistryCollectionsOrganizationOrgEntity,
243
- )
244
- from .registry_versions import (
245
- RegistryVersions,
246
- RegistryVersionsOrganization,
247
- RegistryVersionsOrganizationOrgEntity,
248
- )
249
- from .run_input_artifacts import (
250
- RunInputArtifacts,
251
- RunInputArtifactsProject,
252
- RunInputArtifactsProjectRun,
253
- RunInputArtifactsProjectRunInputArtifacts,
254
- RunInputArtifactsProjectRunInputArtifactsEdges,
255
- RunInputArtifactsProjectRunInputArtifactsPageInfo,
256
- )
257
- from .run_output_artifacts import (
258
- RunOutputArtifacts,
259
- RunOutputArtifactsProject,
260
- RunOutputArtifactsProjectRun,
261
- RunOutputArtifactsProjectRunOutputArtifacts,
262
- RunOutputArtifactsProjectRunOutputArtifactsEdges,
263
- RunOutputArtifactsProjectRunOutputArtifactsPageInfo,
264
- )
265
- from .unlink_artifact import UnlinkArtifact, UnlinkArtifactUnlinkArtifact
266
- from .update_artifact import UpdateArtifact, UpdateArtifactUpdateArtifact
267
- from .update_artifact_portfolio import (
268
- UpdateArtifactPortfolio,
269
- UpdateArtifactPortfolioUpdateArtifactPortfolio,
270
- UpdateArtifactPortfolioUpdateArtifactPortfolioArtifactCollection,
271
- )
272
- from .update_artifact_sequence import (
273
- UpdateArtifactSequence,
274
- UpdateArtifactSequenceUpdateArtifactSequence,
275
- UpdateArtifactSequenceUpdateArtifactSequenceArtifactCollection,
276
- )
277
-
278
3
  __all__ = [
279
4
  "ADD_ALIASES_GQL",
280
5
  "ARTIFACT_BY_ID_GQL",
@@ -307,202 +32,177 @@ __all__ = [
307
32
  "REGISTRY_VERSIONS_GQL",
308
33
  "RUN_INPUT_ARTIFACTS_GQL",
309
34
  "RUN_OUTPUT_ARTIFACTS_GQL",
35
+ "TYPE_INFO_GQL",
310
36
  "UNLINK_ARTIFACT_GQL",
311
37
  "UPDATE_ARTIFACT_GQL",
312
38
  "UPDATE_ARTIFACT_PORTFOLIO_GQL",
313
39
  "UPDATE_ARTIFACT_SEQUENCE_GQL",
314
40
  "DeleteArtifactSequence",
315
- "DeleteArtifactSequenceDeleteArtifactSequence",
316
- "DeleteArtifactSequenceDeleteArtifactSequenceArtifactCollection",
317
41
  "DeleteArtifactPortfolio",
318
- "DeleteArtifactPortfolioDeleteArtifactPortfolio",
319
- "DeleteArtifactPortfolioDeleteArtifactPortfolioArtifactCollection",
320
42
  "UpdateArtifactSequence",
321
- "UpdateArtifactSequenceUpdateArtifactSequence",
322
- "UpdateArtifactSequenceUpdateArtifactSequenceArtifactCollection",
323
43
  "UpdateArtifactPortfolio",
324
- "UpdateArtifactPortfolioUpdateArtifactPortfolio",
325
- "UpdateArtifactPortfolioUpdateArtifactPortfolioArtifactCollection",
326
44
  "MoveArtifactCollection",
327
- "MoveArtifactCollectionMoveArtifactSequence",
328
- "MoveArtifactCollectionMoveArtifactSequenceArtifactCollection",
329
45
  "CreateArtifactCollectionTagAssignments",
330
- "CreateArtifactCollectionTagAssignmentsCreateArtifactCollectionTagAssignments",
331
- "CreateArtifactCollectionTagAssignmentsCreateArtifactCollectionTagAssignmentsTags",
332
46
  "DeleteArtifactCollectionTagAssignments",
333
- "DeleteArtifactCollectionTagAssignmentsDeleteArtifactCollectionTagAssignments",
334
47
  "ProjectArtifactCollections",
335
- "ProjectArtifactCollectionsProject",
336
- "ProjectArtifactCollectionsProjectArtifactType",
337
48
  "ProjectArtifactCollection",
338
- "ProjectArtifactCollectionProject",
339
- "ProjectArtifactCollectionProjectArtifactType",
340
- "ProjectArtifactCollectionProjectArtifactTypeArtifactCollection",
341
- "ProjectArtifactCollectionProjectArtifactTypeArtifactCollectionAliases",
342
- "ProjectArtifactCollectionProjectArtifactTypeArtifactCollectionAliasesEdges",
343
- "ProjectArtifactCollectionProjectArtifactTypeArtifactCollectionAliasesEdgesNode",
344
- "ProjectArtifactCollectionProjectArtifactTypeArtifactCollectionAliasesPageInfo",
345
- "ProjectArtifactCollectionProjectArtifactTypeArtifactCollectionTags",
346
- "ProjectArtifactCollectionProjectArtifactTypeArtifactCollectionTagsEdges",
347
- "ProjectArtifactCollectionProjectArtifactTypeArtifactCollectionTagsEdgesNode",
348
- "ProjectArtifactCollectionProjectArtifactTypeArtifactSequence",
349
49
  "ArtifactVersionFiles",
350
- "ArtifactVersionFilesProject",
351
- "ArtifactVersionFilesProjectArtifactType",
352
- "ArtifactVersionFilesProjectArtifactTypeArtifact",
353
50
  "ArtifactCollectionMembershipFiles",
354
- "ArtifactCollectionMembershipFilesProject",
355
- "ArtifactCollectionMembershipFilesProjectArtifactCollection",
356
- "ArtifactCollectionMembershipFilesProjectArtifactCollectionArtifactMembership",
357
51
  "ArtifactCollectionMembershipFileUrls",
358
- "ArtifactCollectionMembershipFileUrlsProject",
359
- "ArtifactCollectionMembershipFileUrlsProjectArtifactCollection",
360
- "ArtifactCollectionMembershipFileUrlsProjectArtifactCollectionArtifactMembership",
361
52
  "ArtifactFileUrls",
362
- "ArtifactFileUrlsArtifact",
363
53
  "ProjectArtifactTypes",
364
- "ProjectArtifactTypesProject",
365
54
  "ProjectArtifactType",
366
- "ProjectArtifactTypeProject",
367
55
  "ProjectArtifacts",
368
- "ProjectArtifactsProject",
369
- "ProjectArtifactsProjectArtifactType",
370
- "ProjectArtifactsProjectArtifactTypeArtifactCollection",
371
56
  "RunOutputArtifacts",
372
- "RunOutputArtifactsProject",
373
- "RunOutputArtifactsProjectRun",
374
- "RunOutputArtifactsProjectRunOutputArtifacts",
375
- "RunOutputArtifactsProjectRunOutputArtifactsEdges",
376
- "RunOutputArtifactsProjectRunOutputArtifactsPageInfo",
377
57
  "RunInputArtifacts",
378
- "RunInputArtifactsProject",
379
- "RunInputArtifactsProjectRun",
380
- "RunInputArtifactsProjectRunInputArtifacts",
381
- "RunInputArtifactsProjectRunInputArtifactsEdges",
382
- "RunInputArtifactsProjectRunInputArtifactsPageInfo",
383
58
  "FetchLinkedArtifacts",
384
- "FetchLinkedArtifactsArtifact",
385
- "FetchLinkedArtifactsArtifactArtifactMemberships",
386
- "FetchLinkedArtifactsArtifactArtifactMembershipsEdges",
387
- "FetchLinkedArtifactsArtifactArtifactMembershipsEdgesNode",
388
- "FetchLinkedArtifactsArtifactArtifactMembershipsEdgesNodeAliases",
389
- "FetchLinkedArtifactsArtifactArtifactMembershipsEdgesNodeArtifactCollection",
390
- "FetchLinkedArtifactsArtifactArtifactMembershipsEdgesNodeArtifactCollectionProject",
391
59
  "FetchArtifactManifest",
392
- "FetchArtifactManifestProject",
393
- "FetchArtifactManifestProjectArtifact",
394
- "FetchArtifactManifestProjectArtifactCurrentManifest",
395
- "FetchArtifactManifestProjectArtifactCurrentManifestFile",
396
60
  "ArtifactByID",
397
61
  "ArtifactByName",
398
- "ArtifactByNameProject",
399
62
  "ArtifactViaMembershipByName",
400
- "ArtifactViaMembershipByNameProject",
401
63
  "ArtifactUsedBy",
402
- "ArtifactUsedByArtifact",
403
- "ArtifactUsedByArtifactUsedBy",
404
- "ArtifactUsedByArtifactUsedByEdges",
405
- "ArtifactUsedByArtifactUsedByEdgesNode",
406
- "ArtifactUsedByArtifactUsedByEdgesNodeProject",
407
64
  "ArtifactCreatedBy",
408
- "ArtifactCreatedByArtifact",
409
- "ArtifactCreatedByArtifactCreatedByRun",
410
- "ArtifactCreatedByArtifactCreatedByRunProject",
411
- "ArtifactCreatedByArtifactCreatedByUser",
412
65
  "ArtifactType",
413
- "ArtifactTypeProject",
414
- "ArtifactTypeProjectArtifact",
415
- "ArtifactTypeProjectArtifactArtifactType",
416
66
  "AddAliases",
417
- "AddAliasesAddAliases",
418
67
  "DeleteAliases",
419
- "DeleteAliasesDeleteAliases",
420
68
  "UpdateArtifact",
421
- "UpdateArtifactUpdateArtifact",
422
69
  "DeleteArtifact",
423
- "DeleteArtifactDeleteArtifact",
424
- "DeleteArtifactDeleteArtifactArtifact",
425
70
  "LinkArtifact",
426
- "LinkArtifactLinkArtifact",
427
71
  "UnlinkArtifact",
428
- "UnlinkArtifactUnlinkArtifact",
72
+ "TypeInfo",
429
73
  "RegistryVersions",
430
- "RegistryVersionsOrganization",
431
- "RegistryVersionsOrganizationOrgEntity",
432
74
  "RegistryCollections",
433
- "RegistryCollectionsOrganization",
434
- "RegistryCollectionsOrganizationOrgEntity",
435
75
  "FetchRegistries",
436
- "FetchRegistriesOrganization",
437
- "FetchRegistriesOrganizationOrgEntity",
438
76
  "ArtifactAliasInput",
439
77
  "ArtifactCollectionAliasInput",
440
78
  "LinkArtifactInput",
441
79
  "TagInput",
442
80
  "ArtifactCollectionsFragment",
443
- "ArtifactCollectionsFragmentEdges",
444
- "ArtifactCollectionsFragmentEdgesNode",
445
- "ArtifactCollectionsFragmentPageInfo",
446
81
  "ArtifactFragment",
447
- "ArtifactFragmentAliases",
448
- "ArtifactFragmentAliasesArtifactCollection",
449
- "ArtifactFragmentAliasesArtifactCollectionProject",
450
82
  "ArtifactFragmentWithoutAliases",
451
- "ArtifactFragmentWithoutAliasesArtifactSequence",
452
- "ArtifactFragmentWithoutAliasesArtifactSequenceProject",
453
- "ArtifactFragmentWithoutAliasesArtifactType",
454
- "ArtifactFragmentWithoutAliasesCurrentManifest",
455
- "ArtifactFragmentWithoutAliasesCurrentManifestFile",
456
- "ArtifactFragmentWithoutAliasesTags",
457
83
  "ArtifactPortfolioTypeFields",
458
84
  "ArtifactSequenceTypeFields",
459
85
  "ArtifactTypeFragment",
460
86
  "ArtifactTypesFragment",
461
- "ArtifactTypesFragmentEdges",
462
- "ArtifactTypesFragmentPageInfo",
463
87
  "ArtifactsFragment",
464
- "ArtifactsFragmentEdges",
465
- "ArtifactsFragmentPageInfo",
466
88
  "FileUrlsFragment",
467
- "FileUrlsFragmentEdges",
468
- "FileUrlsFragmentEdgesNode",
469
- "FileUrlsFragmentPageInfo",
470
89
  "FilesFragment",
471
- "FilesFragmentEdges",
472
- "FilesFragmentEdgesNode",
473
- "FilesFragmentPageInfo",
474
90
  "MembershipWithArtifact",
475
- "MembershipWithArtifactArtifactCollection",
476
- "MembershipWithArtifactArtifactCollectionProject",
477
91
  "RegistriesPage",
478
- "RegistriesPageEdges",
479
- "RegistriesPagePageInfo",
480
92
  "RegistryCollectionsPage",
481
- "RegistryCollectionsPageEdges",
482
- "RegistryCollectionsPageEdgesNode",
483
- "RegistryCollectionsPageEdgesNodeAliases",
484
- "RegistryCollectionsPageEdgesNodeAliasesEdges",
485
- "RegistryCollectionsPageEdgesNodeAliasesEdgesNode",
486
- "RegistryCollectionsPageEdgesNodeDefaultArtifactType",
487
- "RegistryCollectionsPageEdgesNodeProject",
488
- "RegistryCollectionsPageEdgesNodeProjectEntity",
489
- "RegistryCollectionsPageEdgesNodeTags",
490
- "RegistryCollectionsPageEdgesNodeTagsEdges",
491
- "RegistryCollectionsPageEdgesNodeTagsEdgesNode",
492
- "RegistryCollectionsPagePageInfo",
493
93
  "RegistryFragment",
494
- "RegistryFragmentArtifactTypes",
495
- "RegistryFragmentArtifactTypesEdges",
496
- "RegistryFragmentArtifactTypesEdgesNode",
497
94
  "RegistryVersionsPage",
498
- "RegistryVersionsPageEdges",
499
- "RegistryVersionsPageEdgesNode",
500
- "RegistryVersionsPageEdgesNodeAliases",
501
- "RegistryVersionsPageEdgesNodeArtifactCollection",
502
- "RegistryVersionsPageEdgesNodeArtifactCollectionProject",
503
- "RegistryVersionsPageEdgesNodeArtifactCollectionProjectEntity",
504
- "RegistryVersionsPagePageInfo",
95
+ "RunInputArtifactConnectionFragment",
96
+ "RunOutputArtifactConnectionFragment",
97
+ "TypeInfoFragment",
505
98
  "ArtifactCollectionState",
506
99
  "ArtifactCollectionType",
507
100
  "ArtifactState",
508
101
  ]
102
+ from .add_aliases import AddAliases
103
+ from .artifact_by_id import ArtifactByID
104
+ from .artifact_by_name import ArtifactByName
105
+ from .artifact_collection_membership_file_urls import (
106
+ ArtifactCollectionMembershipFileUrls,
107
+ )
108
+ from .artifact_collection_membership_files import ArtifactCollectionMembershipFiles
109
+ from .artifact_created_by import ArtifactCreatedBy
110
+ from .artifact_file_urls import ArtifactFileUrls
111
+ from .artifact_type import ArtifactType
112
+ from .artifact_used_by import ArtifactUsedBy
113
+ from .artifact_version_files import ArtifactVersionFiles
114
+ from .artifact_via_membership_by_name import ArtifactViaMembershipByName
115
+ from .create_artifact_collection_tag_assignments import (
116
+ CreateArtifactCollectionTagAssignments,
117
+ )
118
+ from .delete_aliases import DeleteAliases
119
+ from .delete_artifact import DeleteArtifact
120
+ from .delete_artifact_collection_tag_assignments import (
121
+ DeleteArtifactCollectionTagAssignments,
122
+ )
123
+ from .delete_artifact_portfolio import DeleteArtifactPortfolio
124
+ from .delete_artifact_sequence import DeleteArtifactSequence
125
+ from .enums import ArtifactCollectionState, ArtifactCollectionType, ArtifactState
126
+ from .fetch_artifact_manifest import FetchArtifactManifest
127
+ from .fetch_linked_artifacts import FetchLinkedArtifacts
128
+ from .fetch_registries import FetchRegistries
129
+ from .fragments import (
130
+ ArtifactCollectionsFragment,
131
+ ArtifactFragment,
132
+ ArtifactFragmentWithoutAliases,
133
+ ArtifactPortfolioTypeFields,
134
+ ArtifactSequenceTypeFields,
135
+ ArtifactsFragment,
136
+ ArtifactTypeFragment,
137
+ ArtifactTypesFragment,
138
+ FilesFragment,
139
+ FileUrlsFragment,
140
+ MembershipWithArtifact,
141
+ RegistriesPage,
142
+ RegistryCollectionsPage,
143
+ RegistryFragment,
144
+ RegistryVersionsPage,
145
+ RunInputArtifactConnectionFragment,
146
+ RunOutputArtifactConnectionFragment,
147
+ TypeInfoFragment,
148
+ )
149
+ from .input_types import (
150
+ ArtifactAliasInput,
151
+ ArtifactCollectionAliasInput,
152
+ LinkArtifactInput,
153
+ TagInput,
154
+ )
155
+ from .link_artifact import LinkArtifact
156
+ from .move_artifact_collection import MoveArtifactCollection
157
+ from .operations import (
158
+ ADD_ALIASES_GQL,
159
+ ARTIFACT_BY_ID_GQL,
160
+ ARTIFACT_BY_NAME_GQL,
161
+ ARTIFACT_COLLECTION_MEMBERSHIP_FILE_URLS_GQL,
162
+ ARTIFACT_COLLECTION_MEMBERSHIP_FILES_GQL,
163
+ ARTIFACT_CREATED_BY_GQL,
164
+ ARTIFACT_FILE_URLS_GQL,
165
+ ARTIFACT_TYPE_GQL,
166
+ ARTIFACT_USED_BY_GQL,
167
+ ARTIFACT_VERSION_FILES_GQL,
168
+ ARTIFACT_VIA_MEMBERSHIP_BY_NAME_GQL,
169
+ CREATE_ARTIFACT_COLLECTION_TAG_ASSIGNMENTS_GQL,
170
+ DELETE_ALIASES_GQL,
171
+ DELETE_ARTIFACT_COLLECTION_TAG_ASSIGNMENTS_GQL,
172
+ DELETE_ARTIFACT_GQL,
173
+ DELETE_ARTIFACT_PORTFOLIO_GQL,
174
+ DELETE_ARTIFACT_SEQUENCE_GQL,
175
+ FETCH_ARTIFACT_MANIFEST_GQL,
176
+ FETCH_LINKED_ARTIFACTS_GQL,
177
+ FETCH_REGISTRIES_GQL,
178
+ LINK_ARTIFACT_GQL,
179
+ MOVE_ARTIFACT_COLLECTION_GQL,
180
+ PROJECT_ARTIFACT_COLLECTION_GQL,
181
+ PROJECT_ARTIFACT_COLLECTIONS_GQL,
182
+ PROJECT_ARTIFACT_TYPE_GQL,
183
+ PROJECT_ARTIFACT_TYPES_GQL,
184
+ PROJECT_ARTIFACTS_GQL,
185
+ REGISTRY_COLLECTIONS_GQL,
186
+ REGISTRY_VERSIONS_GQL,
187
+ RUN_INPUT_ARTIFACTS_GQL,
188
+ RUN_OUTPUT_ARTIFACTS_GQL,
189
+ TYPE_INFO_GQL,
190
+ UNLINK_ARTIFACT_GQL,
191
+ UPDATE_ARTIFACT_GQL,
192
+ UPDATE_ARTIFACT_PORTFOLIO_GQL,
193
+ UPDATE_ARTIFACT_SEQUENCE_GQL,
194
+ )
195
+ from .project_artifact_collection import ProjectArtifactCollection
196
+ from .project_artifact_collections import ProjectArtifactCollections
197
+ from .project_artifact_type import ProjectArtifactType
198
+ from .project_artifact_types import ProjectArtifactTypes
199
+ from .project_artifacts import ProjectArtifacts
200
+ from .registry_collections import RegistryCollections
201
+ from .registry_versions import RegistryVersions
202
+ from .run_input_artifacts import RunInputArtifacts
203
+ from .run_output_artifacts import RunOutputArtifacts
204
+ from .type_info import TypeInfo
205
+ from .unlink_artifact import UnlinkArtifact
206
+ from .update_artifact import UpdateArtifact
207
+ from .update_artifact_portfolio import UpdateArtifactPortfolio
208
+ from .update_artifact_sequence import UpdateArtifactSequence
@@ -385,6 +385,59 @@ class RegistryVersionsPagePageInfo(GQLBase):
385
385
  has_next_page: bool = Field(alias="hasNextPage")
386
386
 
387
387
 
388
+ class RunInputArtifactConnectionFragment(GQLBase):
389
+ total_count: int = Field(alias="totalCount")
390
+ edges: List[RunInputArtifactConnectionFragmentEdges]
391
+ page_info: RunInputArtifactConnectionFragmentPageInfo = Field(alias="pageInfo")
392
+
393
+
394
+ class RunInputArtifactConnectionFragmentEdges(GQLBase):
395
+ node: Optional[ArtifactFragment]
396
+ cursor: str
397
+
398
+
399
+ class RunInputArtifactConnectionFragmentPageInfo(GQLBase):
400
+ end_cursor: Optional[str] = Field(alias="endCursor")
401
+ has_next_page: bool = Field(alias="hasNextPage")
402
+
403
+
404
+ class RunOutputArtifactConnectionFragment(GQLBase):
405
+ total_count: int = Field(alias="totalCount")
406
+ edges: List[RunOutputArtifactConnectionFragmentEdges]
407
+ page_info: RunOutputArtifactConnectionFragmentPageInfo = Field(alias="pageInfo")
408
+
409
+
410
+ class RunOutputArtifactConnectionFragmentEdges(GQLBase):
411
+ node: Optional[ArtifactFragment]
412
+ cursor: str
413
+
414
+
415
+ class RunOutputArtifactConnectionFragmentPageInfo(GQLBase):
416
+ end_cursor: Optional[str] = Field(alias="endCursor")
417
+ has_next_page: bool = Field(alias="hasNextPage")
418
+
419
+
420
+ class TypeInfoFragment(GQLBase):
421
+ name: Optional[str]
422
+ fields: Optional[List[TypeInfoFragmentFields]]
423
+ input_fields: Optional[List[TypeInfoFragmentInputFields]] = Field(
424
+ alias="inputFields"
425
+ )
426
+
427
+
428
+ class TypeInfoFragmentFields(GQLBase):
429
+ name: str
430
+ args: List[TypeInfoFragmentFieldsArgs]
431
+
432
+
433
+ class TypeInfoFragmentFieldsArgs(GQLBase):
434
+ name: str
435
+
436
+
437
+ class TypeInfoFragmentInputFields(GQLBase):
438
+ name: str
439
+
440
+
388
441
  class ArtifactFragment(ArtifactFragmentWithoutAliases):
389
442
  aliases: Optional[List[ArtifactFragmentAliases]] = None
390
443
 
@@ -451,9 +504,21 @@ RegistryVersionsPageEdgesNodeArtifactCollection.model_rebuild()
451
504
  RegistryVersionsPageEdgesNodeArtifactCollectionProject.model_rebuild()
452
505
  RegistryVersionsPageEdgesNodeArtifactCollectionProjectEntity.model_rebuild()
453
506
  RegistryVersionsPagePageInfo.model_rebuild()
507
+ RunInputArtifactConnectionFragment.model_rebuild()
508
+ RunInputArtifactConnectionFragmentEdges.model_rebuild()
509
+ RunInputArtifactConnectionFragmentPageInfo.model_rebuild()
510
+ RunOutputArtifactConnectionFragment.model_rebuild()
511
+ RunOutputArtifactConnectionFragmentEdges.model_rebuild()
512
+ RunOutputArtifactConnectionFragmentPageInfo.model_rebuild()
513
+ TypeInfoFragment.model_rebuild()
514
+ TypeInfoFragmentFields.model_rebuild()
515
+ TypeInfoFragmentFieldsArgs.model_rebuild()
516
+ TypeInfoFragmentInputFields.model_rebuild()
454
517
  ArtifactFragment.model_rebuild()
455
518
  ArtifactFragmentWithoutAliases.model_rebuild()
456
519
  ArtifactTypeFragment.model_rebuild()
457
520
  RegistryFragment.model_rebuild()
458
521
  ArtifactFragment.model_rebuild()
459
522
  ArtifactFragment.model_rebuild()
523
+ ArtifactFragment.model_rebuild()
524
+ ArtifactFragment.model_rebuild()