Skip to content

Commit

Permalink
Fixed parameter name
Browse files Browse the repository at this point in the history
  • Loading branch information
Ashwin Jeyaseelan authored and Ashwin Jeyaseelan committed Jun 28, 2024
1 parent 8e2aee6 commit 86ce92a
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ def _build_arguments_schema(cls, *args, **kwargs):
# define Arg Group ""

_args_schema = cls._args_schema
_args_schema.azure_large_instance_name = AAZStrArg(
options=["--azure-large-instance-name"],
_args_schema.instance_name = AAZStrArg(
options=["-n", "--name", "--instance-name"],
help="Name of the AzureLargeInstance.",
required=True,
id_part="name",
Expand Down Expand Up @@ -132,7 +132,7 @@ def error_format(self):
def url_parameters(self):
parameters = {
**self.serialize_url_param(
"azureLargeInstanceName", self.ctx.args.azure_large_instance_name,
"azureLargeInstanceName", self.ctx.args.instance_name,
required=True,
),
**self.serialize_url_param(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ def _build_arguments_schema(cls, *args, **kwargs):
# define Arg Group ""

_args_schema = cls._args_schema
_args_schema.azure_large_instance_name = AAZStrArg(
options=["--azure-large-instance-name"],
_args_schema.instance_name = AAZStrArg(
options=["-n", "--name", "--instance-name"],
help="Name of the AzureLargeInstance.",
required=True,
id_part="name",
Expand Down Expand Up @@ -122,7 +122,7 @@ def error_format(self):
def url_parameters(self):
parameters = {
**self.serialize_url_param(
"azureLargeInstanceName", self.ctx.args.azure_large_instance_name,
"azureLargeInstanceName", self.ctx.args.instance_name,
required=True,
),
**self.serialize_url_param(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ def _build_arguments_schema(cls, *args, **kwargs):
# define Arg Group ""

_args_schema = cls._args_schema
_args_schema.azure_large_instance_name = AAZStrArg(
options=["--azure-large-instance-name"],
_args_schema.instance_name = AAZStrArg(
options=["-n", "--name", "--instance-name"],
help="Name of the AzureLargeInstance.",
required=True,
id_part="name",
Expand Down Expand Up @@ -122,7 +122,7 @@ def error_format(self):
def url_parameters(self):
parameters = {
**self.serialize_url_param(
"azureLargeInstanceName", self.ctx.args.azure_large_instance_name,
"azureLargeInstanceName", self.ctx.args.instance_name,
required=True,
),
**self.serialize_url_param(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ def _build_arguments_schema(cls, *args, **kwargs):
# define Arg Group ""

_args_schema = cls._args_schema
_args_schema.azure_large_storage_instance_name = AAZStrArg(
options=["-n", "--name", "--azure-large-storage-instance-name"],
_args_schema.instance_name = AAZStrArg(
options=["-n", "--name", "--instance-name"],
help="Name of the AzureLargeStorageInstance.",
required=True,
id_part="name",
Expand Down Expand Up @@ -106,7 +106,7 @@ def error_format(self):
def url_parameters(self):
parameters = {
**self.serialize_url_param(
"azureLargeStorageInstanceName", self.ctx.args.azure_large_storage_instance_name,
"azureLargeStorageInstanceName", self.ctx.args.instance_name,
required=True,
),
**self.serialize_url_param(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ def _build_arguments_schema(cls, *args, **kwargs):
# define Arg Group ""

_args_schema = cls._args_schema
_args_schema.azure_large_storage_instance_name = AAZStrArg(
options=["-n", "--name", "--azure-large-storage-instance-name"],
_args_schema.instance_name = AAZStrArg(
options=["-n", "--name", "--instance-name"],
help="Name of the AzureLargeStorageInstance.",
required=True,
id_part="name",
Expand Down Expand Up @@ -118,7 +118,7 @@ def error_format(self):
def url_parameters(self):
parameters = {
**self.serialize_url_param(
"azureLargeStorageInstanceName", self.ctx.args.azure_large_storage_instance_name,
"azureLargeStorageInstanceName", self.ctx.args.instance_name,
required=True,
),
**self.serialize_url_param(
Expand Down

0 comments on commit 86ce92a

Please sign in to comment.