Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add Fleet API 2025-03-01 #8589

Open
wants to merge 20 commits into
base: main
Choose a base branch
from
4 changes: 4 additions & 0 deletions src/fleet/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -115,3 +115,7 @@ Release History
1.4.0
++++++
* Set autoupgradeprofile commands to preview mode

1.5.0
++++++
* Upgrade SDK version to 2025-03-01
2 changes: 1 addition & 1 deletion src/fleet/azext_fleet/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def register_fleet_resource_type():
register_resource_type(
"latest",
CUSTOM_MGMT_FLEET,
SDKProfile("2024-05-02-preview"),
SDKProfile("2025-03-01"),
)


Expand Down
4 changes: 4 additions & 0 deletions src/fleet/azext_fleet/_client_factory.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,7 @@ def get_resource_groups_client(cli_ctx, subscription_id=None):

def cf_auto_upgrade_profiles(cli_ctx, *_):
return get_container_service_client(cli_ctx).auto_upgrade_profiles


def cf_auto_upgrade_profile_operations(cli_ctx, *_):
return get_container_service_client(cli_ctx).auto_upgrade_profile_operations
8 changes: 8 additions & 0 deletions src/fleet/azext_fleet/_help.py
Original file line number Diff line number Diff line change
Expand Up @@ -380,6 +380,14 @@
text: az fleet autoupgradeprofile list -g MyFleetResourceGroup -f MyFleetName
"""

helps['fleet autoupgradeprofile generate-update-run'] = """
type: command
short-summary: Generates an update run for a given auto upgrade profile.
examples:
- name: Generates an update run for a given auto upgrade profile.
text: az fleet autoupgradeprofile generate-update-run -g MyFleetResourceGroup -f MyFleetName --auto-upgrade-profile-name MyAutoUpgradeProfileName
"""

helps['fleet autoupgradeprofile wait'] = """
type: command
short-summary: Wait for an auto upgrade resource to reach a desired state.
Expand Down
5 changes: 5 additions & 0 deletions src/fleet/azext_fleet/_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,3 +110,8 @@ def load_arguments(self, _):
with self.argument_context('fleet autoupgradeprofile wait') as c:
c.argument('auto_upgrade_profile_name', options_list=['--auto-upgrade-profile-name', '--profile-name'],
help='Specify name for the auto upgrade profile.')

with self.argument_context('fleet autoupgradeprofile generate-update-run') as c:
c.argument('resource_group_name', options_list=['--resource-group', '-g'], help='Name of the resource group.')
c.argument('fleet_name', options_list=['--fleet-name', '-f'], help='Name of the fleet.')
c.argument('auto_upgrade_profile_name', options_list=['--auto-upgrade-profile-name', '--profile-name', '--name', '-n'], help='Name of the auto upgrade profile.')
16 changes: 14 additions & 2 deletions src/fleet/azext_fleet/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@
cf_fleet_members,
cf_update_runs,
cf_fleet_update_strategies,
cf_auto_upgrade_profiles
cf_auto_upgrade_profiles,
cf_auto_upgrade_profile_operations

)


Expand Down Expand Up @@ -46,6 +48,12 @@ def load_command_table(self, _):
client_factory=cf_auto_upgrade_profiles
)

auto_upgrade_profile_operations_sdk = CliCommandType(
operations_tmpl="azext_fleet.vendored_sdks.operations._auto_upgrade_profile_operations_operations#AutoUpgradeProfileOperationsOperations.{}",
operation_group="auto_upgrade_profile_operations",
client_factory=cf_auto_upgrade_profile_operations
)

# fleets command group
with self.command_group("fleet", fleets_sdk, client_factory=cf_fleets) as g:
g.custom_command("create", "create_fleet", supports_no_wait=True)
Expand Down Expand Up @@ -87,9 +95,13 @@ def load_command_table(self, _):
g.wait_command("wait")

# auto upgrade profiles command group
with self.command_group("fleet autoupgradeprofile", auto_upgrade_profiles_sdk, client_factory=cf_auto_upgrade_profiles, is_preview=True) as g:
with self.command_group("fleet autoupgradeprofile", auto_upgrade_profiles_sdk, client_factory=cf_auto_upgrade_profiles) as g:
g.custom_command("create", "create_auto_upgrade_profile", supports_no_wait=True)
g.custom_show_command("show", "show_auto_upgrade_profile")
g.custom_command("list", "list_auto_upgrade_profiles")
g.custom_command("delete", "delete_auto_upgrade_profile", supports_no_wait=True, confirmation=True)
g.wait_command("wait")

# auto upgrade profiles operation command group
with self.command_group("fleet autoupgradeprofile", auto_upgrade_profile_operations_sdk, client_factory=cf_auto_upgrade_profile_operations) as g:
g.custom_command("generate-update-run", "generate_update_run", supports_no_wait=True)
10 changes: 10 additions & 0 deletions src/fleet/azext_fleet/custom.py
Original file line number Diff line number Diff line change
Expand Up @@ -603,3 +603,13 @@ def delete_auto_upgrade_profile(cmd, # pylint: disable=unused-argument
name,
no_wait=False):
return sdk_no_wait(no_wait, client.begin_delete, resource_group_name, fleet_name, name)


def generate_update_run(cmd, client, resource_group_name, fleet_name, auto_upgrade_profile_name, no_wait=False):
return sdk_no_wait(
no_wait,
client.begin_generate_update_run,
resource_group_name,
fleet_name,
auto_upgrade_profile_name
)
Loading
Loading