-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added extension support for NNF 4.2 release (#7095)
* Added extension support for NNF 4.2 release * added whitespaces in around arithmetic operator * Added new line at end of file * Fixed flake8 linting issues * Removed test_managednetworkfabric.py file as it was not in use --------- Co-authored-by: aytripathi <aytripathi@DESKTOP-DN8JFGH>
- Loading branch information
1 parent
d350180
commit 1f408c3
Showing
79 changed files
with
11,147 additions
and
4,093 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,4 +12,5 @@ | |
from ._list import * | ||
from ._show import * | ||
from ._update import * | ||
from ._upgrade import * | ||
from ._wait import * |
273 changes: 273 additions & 0 deletions
273
...nagednetworkfabric/azext_managednetworkfabric/aaz/latest/networkfabric/device/_upgrade.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,273 @@ | ||
# -------------------------------------------------------------------------------------------- | ||
# Copyright (c) Microsoft Corporation. All rights reserved. | ||
# Licensed under the MIT License. See License.txt in the project root for license information. | ||
# | ||
# Code generated by aaz-dev-tools | ||
# -------------------------------------------------------------------------------------------- | ||
|
||
# pylint: skip-file | ||
# flake8: noqa | ||
|
||
from azure.cli.core.aaz import * | ||
|
||
|
||
@register_command( | ||
"networkfabric device upgrade", | ||
) | ||
class Upgrade(AAZCommand): | ||
"""Upgrades the version of the Network Device. | ||
""" | ||
|
||
_aaz_info = { | ||
"version": "2023-06-15", | ||
"resources": [ | ||
["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.managednetworkfabric/networkdevices/{}/upgrade", "2023-06-15"], | ||
] | ||
} | ||
|
||
AZ_SUPPORT_NO_WAIT = True | ||
|
||
def _handler(self, command_args): | ||
super()._handler(command_args) | ||
return self.build_lro_poller(self._execute_operations, self._output) | ||
|
||
_args_schema = None | ||
|
||
@classmethod | ||
def _build_arguments_schema(cls, *args, **kwargs): | ||
if cls._args_schema is not None: | ||
return cls._args_schema | ||
cls._args_schema = super()._build_arguments_schema(*args, **kwargs) | ||
|
||
# define Arg Group "" | ||
|
||
_args_schema = cls._args_schema | ||
_args_schema.resource_name = AAZStrArg( | ||
options=["--resource-name"], | ||
help="Name of the Network Device.", | ||
required=True, | ||
id_part="name", | ||
) | ||
_args_schema.resource_group = AAZResourceGroupNameArg( | ||
help="Name of the resource group", | ||
required=True, | ||
) | ||
|
||
# define Arg Group "Body" | ||
|
||
_args_schema = cls._args_schema | ||
_args_schema.version = AAZStrArg( | ||
options=["--version"], | ||
arg_group="Body", | ||
help="Specify the version.", | ||
) | ||
return cls._args_schema | ||
|
||
def _execute_operations(self): | ||
self.pre_operations() | ||
yield self.NetworkDevicesUpgrade(ctx=self.ctx)() | ||
self.post_operations() | ||
|
||
@register_callback | ||
def pre_operations(self): | ||
pass | ||
|
||
@register_callback | ||
def post_operations(self): | ||
pass | ||
|
||
def _output(self, *args, **kwargs): | ||
result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) | ||
return result | ||
|
||
class NetworkDevicesUpgrade(AAZHttpOperation): | ||
CLIENT_TYPE = "MgmtClient" | ||
|
||
def __call__(self, *args, **kwargs): | ||
request = self.make_request() | ||
session = self.client.send_request(request=request, stream=False, **kwargs) | ||
if session.http_response.status_code in [202]: | ||
return self.client.build_lro_polling( | ||
self.ctx.args.no_wait, | ||
session, | ||
self.on_200, | ||
self.on_error, | ||
lro_options={"final-state-via": "location"}, | ||
path_format_arguments=self.url_parameters, | ||
) | ||
if session.http_response.status_code in [200]: | ||
return self.client.build_lro_polling( | ||
self.ctx.args.no_wait, | ||
session, | ||
self.on_200, | ||
self.on_error, | ||
lro_options={"final-state-via": "location"}, | ||
path_format_arguments=self.url_parameters, | ||
) | ||
|
||
return self.on_error(session.http_response) | ||
|
||
@property | ||
def url(self): | ||
return self.client.format_url( | ||
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedNetworkFabric/networkDevices/{networkDeviceName}/upgrade", | ||
**self.url_parameters | ||
) | ||
|
||
@property | ||
def method(self): | ||
return "POST" | ||
|
||
@property | ||
def error_format(self): | ||
return "MgmtErrorFormat" | ||
|
||
@property | ||
def url_parameters(self): | ||
parameters = { | ||
**self.serialize_url_param( | ||
"networkDeviceName", self.ctx.args.resource_name, | ||
required=True, | ||
), | ||
**self.serialize_url_param( | ||
"resourceGroupName", self.ctx.args.resource_group, | ||
required=True, | ||
), | ||
**self.serialize_url_param( | ||
"subscriptionId", self.ctx.subscription_id, | ||
required=True, | ||
), | ||
} | ||
return parameters | ||
|
||
@property | ||
def query_parameters(self): | ||
parameters = { | ||
**self.serialize_query_param( | ||
"api-version", "2023-06-15", | ||
required=True, | ||
), | ||
} | ||
return parameters | ||
|
||
@property | ||
def header_parameters(self): | ||
parameters = { | ||
**self.serialize_header_param( | ||
"Content-Type", "application/json", | ||
), | ||
**self.serialize_header_param( | ||
"Accept", "application/json", | ||
), | ||
} | ||
return parameters | ||
|
||
@property | ||
def content(self): | ||
_content_value, _builder = self.new_content_builder( | ||
self.ctx.args, | ||
typ=AAZObjectType, | ||
typ_kwargs={"flags": {"required": True, "client_flatten": True}} | ||
) | ||
_builder.set_prop("version", AAZStrType, ".version") | ||
|
||
return self.serialize_content(_content_value) | ||
|
||
def on_200(self, session): | ||
data = self.deserialize_http_content(session) | ||
self.ctx.set_var( | ||
"instance", | ||
data, | ||
schema_builder=self._build_schema_on_200 | ||
) | ||
|
||
_schema_on_200 = None | ||
|
||
@classmethod | ||
def _build_schema_on_200(cls): | ||
if cls._schema_on_200 is not None: | ||
return cls._schema_on_200 | ||
|
||
cls._schema_on_200 = AAZObjectType() | ||
_UpgradeHelper._build_schema_common_post_action_response_for_state_update_read(cls._schema_on_200) | ||
|
||
return cls._schema_on_200 | ||
|
||
|
||
class _UpgradeHelper: | ||
"""Helper class for Upgrade""" | ||
|
||
_schema_common_post_action_response_for_state_update_read = None | ||
|
||
@classmethod | ||
def _build_schema_common_post_action_response_for_state_update_read(cls, _schema): | ||
if cls._schema_common_post_action_response_for_state_update_read is not None: | ||
_schema.configuration_state = cls._schema_common_post_action_response_for_state_update_read.configuration_state | ||
_schema.error = cls._schema_common_post_action_response_for_state_update_read.error | ||
return | ||
|
||
cls._schema_common_post_action_response_for_state_update_read = _schema_common_post_action_response_for_state_update_read = AAZObjectType() | ||
|
||
common_post_action_response_for_state_update_read = _schema_common_post_action_response_for_state_update_read | ||
common_post_action_response_for_state_update_read.configuration_state = AAZStrType( | ||
serialized_name="configurationState", | ||
flags={"read_only": True}, | ||
) | ||
common_post_action_response_for_state_update_read.error = AAZObjectType() | ||
cls._build_schema_error_detail_read(common_post_action_response_for_state_update_read.error) | ||
|
||
_schema.configuration_state = cls._schema_common_post_action_response_for_state_update_read.configuration_state | ||
_schema.error = cls._schema_common_post_action_response_for_state_update_read.error | ||
|
||
_schema_error_detail_read = None | ||
|
||
@classmethod | ||
def _build_schema_error_detail_read(cls, _schema): | ||
if cls._schema_error_detail_read is not None: | ||
_schema.additional_info = cls._schema_error_detail_read.additional_info | ||
_schema.code = cls._schema_error_detail_read.code | ||
_schema.details = cls._schema_error_detail_read.details | ||
_schema.message = cls._schema_error_detail_read.message | ||
_schema.target = cls._schema_error_detail_read.target | ||
return | ||
|
||
cls._schema_error_detail_read = _schema_error_detail_read = AAZObjectType() | ||
|
||
error_detail_read = _schema_error_detail_read | ||
error_detail_read.additional_info = AAZListType( | ||
serialized_name="additionalInfo", | ||
flags={"read_only": True}, | ||
) | ||
error_detail_read.code = AAZStrType( | ||
flags={"read_only": True}, | ||
) | ||
error_detail_read.details = AAZListType( | ||
flags={"read_only": True}, | ||
) | ||
error_detail_read.message = AAZStrType( | ||
flags={"read_only": True}, | ||
) | ||
error_detail_read.target = AAZStrType( | ||
flags={"read_only": True}, | ||
) | ||
|
||
additional_info = _schema_error_detail_read.additional_info | ||
additional_info.Element = AAZObjectType() | ||
|
||
_element = _schema_error_detail_read.additional_info.Element | ||
_element.type = AAZStrType( | ||
flags={"read_only": True}, | ||
) | ||
|
||
details = _schema_error_detail_read.details | ||
details.Element = AAZObjectType() | ||
cls._build_schema_error_detail_read(details.Element) | ||
|
||
_schema.additional_info = cls._schema_error_detail_read.additional_info | ||
_schema.code = cls._schema_error_detail_read.code | ||
_schema.details = cls._schema_error_detail_read.details | ||
_schema.message = cls._schema_error_detail_read.message | ||
_schema.target = cls._schema_error_detail_read.target | ||
|
||
|
||
__all__ = ["Upgrade"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.