|
1 | 1 | #!/usr/bin/env python
|
2 | 2 |
|
3 |
| -# Copyright (c) 2021, 2024 Oracle and/or its affiliates. |
| 3 | +# Copyright (c) 2021, 2025 Oracle and/or its affiliates. |
4 | 4 | # Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl/
|
5 | 5 |
|
6 | 6 | import logging
|
|
18 | 18 | from oci.limits import LimitsClient
|
19 | 19 | from oci.logging import LoggingManagementClient
|
20 | 20 | from oci.marketplace import MarketplaceClient
|
21 |
| -from oci.model_deployment import ModelDeploymentClient |
22 | 21 | from oci.object_storage import ObjectStorageClient
|
23 | 22 | from oci.resource_search import ResourceSearchClient
|
24 | 23 | from oci.secrets import SecretsClient
|
@@ -70,7 +69,6 @@ def _client_impl(client):
|
70 | 69 | "vault": VaultsClient,
|
71 | 70 | "identity": IdentityClient,
|
72 | 71 | "compute": ComputeClient,
|
73 |
| - "model_deployment": ModelDeploymentClient, |
74 | 72 | "ai_language": AIServiceLanguageClient,
|
75 | 73 | "data_labeling_dp": DataLabelingClient,
|
76 | 74 | "data_labeling_cp": DataLabelingManagementClient,
|
@@ -116,10 +114,6 @@ def create_client(self, client_name):
|
116 | 114 | def object_storage(self):
|
117 | 115 | return self.create_client("object_storage")
|
118 | 116 |
|
119 |
| - @property |
120 |
| - def model_deployment(self): |
121 |
| - return self.create_client("model_deployment") |
122 |
| - |
123 | 117 | @property
|
124 | 118 | def compute(self):
|
125 | 119 | return self.create_client("compute")
|
|
0 commit comments