Skip to content

Commit

Permalink
Replace vendored ARO SDK with real SDK
Browse files Browse the repository at this point in the history
  • Loading branch information
tsatam committed Aug 24, 2023
1 parent d7b0a63 commit 3b008a0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion python/az/aro/azext_aro/_client_factory.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

import urllib3

from azext_aro.vendored_sdks.azure.mgmt.redhatopenshift.v2023_04_01 import AzureRedHatOpenShiftClient
from azure.mgmt.redhatopenshift import AzureRedHatOpenShiftClient
from azure.cli.core.commands.client_factory import get_mgmt_service_client


Expand Down
2 changes: 1 addition & 1 deletion python/az/aro/azext_aro/custom.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from base64 import b64decode
import textwrap

import azext_aro.vendored_sdks.azure.mgmt.redhatopenshift.v2023_04_01.models as openshiftcluster
import azure.mgmt.redhatopenshift.models as openshiftcluster

from azure.cli.command_modules.role import GraphError
from azure.cli.core.commands.client_factory import get_mgmt_service_client
Expand Down
1 change: 0 additions & 1 deletion python/az/aro/azext_aro/vendored_sdks

This file was deleted.

3 changes: 2 additions & 1 deletion python/az/aro/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@
]

DEPENDENCIES = [
'azure-cli-core'
'azure-cli-core',
'azure-mgmt-redhatopenshift~=1.3.0',
]

with open('README.rst', 'r', encoding='utf-8') as f:
Expand Down

0 comments on commit 3b008a0

Please sign in to comment.