azureml-registry-tools 0.1.0a5__tar.gz → 0.1.0a6__tar.gz

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 (27) hide show
  1. {azureml_registry_tools-0.1.0a5/azureml_registry_tools.egg-info → azureml_registry_tools-0.1.0a6}/PKG-INFO +1 -1
  2. {azureml_registry_tools-0.1.0a5 → azureml_registry_tools-0.1.0a6}/azureml/registry/mgmt/syndication_manifest.py +3 -3
  3. {azureml_registry_tools-0.1.0a5 → azureml_registry_tools-0.1.0a6/azureml_registry_tools.egg-info}/PKG-INFO +1 -1
  4. {azureml_registry_tools-0.1.0a5 → azureml_registry_tools-0.1.0a6}/setup.py +1 -1
  5. {azureml_registry_tools-0.1.0a5 → azureml_registry_tools-0.1.0a6}/LICENSE.txt +0 -0
  6. {azureml_registry_tools-0.1.0a5 → azureml_registry_tools-0.1.0a6}/azureml/__init__.py +0 -0
  7. {azureml_registry_tools-0.1.0a5 → azureml_registry_tools-0.1.0a6}/azureml/registry/__init__.py +0 -0
  8. {azureml_registry_tools-0.1.0a5 → azureml_registry_tools-0.1.0a6}/azureml/registry/_cli/__init__.py +0 -0
  9. {azureml_registry_tools-0.1.0a5 → azureml_registry_tools-0.1.0a6}/azureml/registry/_cli/registry_syndication_cli.py +0 -0
  10. {azureml_registry_tools-0.1.0a5 → azureml_registry_tools-0.1.0a6}/azureml/registry/_cli/repo2registry_cli.py +0 -0
  11. {azureml_registry_tools-0.1.0a5 → azureml_registry_tools-0.1.0a6}/azureml/registry/_rest_client/__init__.py +0 -0
  12. {azureml_registry_tools-0.1.0a5 → azureml_registry_tools-0.1.0a6}/azureml/registry/_rest_client/arm_client.py +0 -0
  13. {azureml_registry_tools-0.1.0a5 → azureml_registry_tools-0.1.0a6}/azureml/registry/_rest_client/base_rest_client.py +0 -0
  14. {azureml_registry_tools-0.1.0a5 → azureml_registry_tools-0.1.0a6}/azureml/registry/_rest_client/registry_management_client.py +0 -0
  15. {azureml_registry_tools-0.1.0a5 → azureml_registry_tools-0.1.0a6}/azureml/registry/mgmt/__init__.py +0 -0
  16. {azureml_registry_tools-0.1.0a5 → azureml_registry_tools-0.1.0a6}/azureml/registry/mgmt/create_manifest.py +0 -0
  17. {azureml_registry_tools-0.1.0a5 → azureml_registry_tools-0.1.0a6}/azureml/registry/tools/__init__.py +0 -0
  18. {azureml_registry_tools-0.1.0a5 → azureml_registry_tools-0.1.0a6}/azureml/registry/tools/config.py +0 -0
  19. {azureml_registry_tools-0.1.0a5 → azureml_registry_tools-0.1.0a6}/azureml/registry/tools/create_or_update_assets.py +0 -0
  20. {azureml_registry_tools-0.1.0a5 → azureml_registry_tools-0.1.0a6}/azureml/registry/tools/registry_utils.py +0 -0
  21. {azureml_registry_tools-0.1.0a5 → azureml_registry_tools-0.1.0a6}/azureml/registry/tools/repo2registry_config.py +0 -0
  22. {azureml_registry_tools-0.1.0a5 → azureml_registry_tools-0.1.0a6}/azureml_registry_tools.egg-info/SOURCES.txt +0 -0
  23. {azureml_registry_tools-0.1.0a5 → azureml_registry_tools-0.1.0a6}/azureml_registry_tools.egg-info/dependency_links.txt +0 -0
  24. {azureml_registry_tools-0.1.0a5 → azureml_registry_tools-0.1.0a6}/azureml_registry_tools.egg-info/entry_points.txt +0 -0
  25. {azureml_registry_tools-0.1.0a5 → azureml_registry_tools-0.1.0a6}/azureml_registry_tools.egg-info/requires.txt +0 -0
  26. {azureml_registry_tools-0.1.0a5 → azureml_registry_tools-0.1.0a6}/azureml_registry_tools.egg-info/top_level.txt +0 -0
  27. {azureml_registry_tools-0.1.0a5 → azureml_registry_tools-0.1.0a6}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: azureml-registry-tools
3
- Version: 0.1.0a5
3
+ Version: 0.1.0a6
4
4
  Summary: AzureML Registry tools and CLI
5
5
  Author: Microsoft Corp
6
6
  License: https://aka.ms/azureml-sdk-license
@@ -160,16 +160,16 @@ class AssetToResync:
160
160
  def to_dict(self) -> dict:
161
161
  """Convert the AssetToResync instance to a dictionary."""
162
162
  return {
163
- "AssetId": self.asset_id,
163
+ "AssetIds": self.asset_id,
164
164
  "TenantId": str(self.tenant_id)
165
165
  }
166
166
 
167
167
  @staticmethod
168
168
  def from_dict(d: dict, normalize_keys=False) -> "AssetToResync":
169
169
  """Create an AssetToResync instance from a dictionary."""
170
- asset_id = _get_key(d, "AssetId", "asset_id", normalize_keys=normalize_keys)
170
+ asset_id = _get_key(d, "AssetIds", "asset_ids", normalize_keys=normalize_keys)
171
171
  if asset_id is None:
172
- raise ValueError("Missing required field 'AssetId' in dictionary.")
172
+ raise ValueError("Missing required field 'AssetIds' in dictionary.")
173
173
 
174
174
  tenant_id_str = _get_key(d, "TenantId", "tenant_id", normalize_keys=normalize_keys)
175
175
  if tenant_id_str is None:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: azureml-registry-tools
3
- Version: 0.1.0a5
3
+ Version: 0.1.0a6
4
4
  Summary: AzureML Registry tools and CLI
5
5
  Author: Microsoft Corp
6
6
  License: https://aka.ms/azureml-sdk-license
@@ -18,7 +18,7 @@ exclude_list = ["*.tests"]
18
18
 
19
19
  setup(
20
20
  name='azureml-registry-tools',
21
- version="0.1.0a5",
21
+ version="0.1.0a6",
22
22
  description='AzureML Registry tools and CLI',
23
23
  author='Microsoft Corp',
24
24
  license="https://aka.ms/azureml-sdk-license",