Skip to content

Commit 0c0719a

Browse files
authored
[Microsoft Connected Cache] Change is_preview flags on all commands to true and increment mcc version to v1.0.0b2 from v1.0.0b1 (#8295)
1 parent b078528 commit 0c0719a

30 files changed

+57
-65
lines changed

src/mcc/azext_mcc/aaz/latest/mcc/__cmd_group.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313

1414
@register_command_group(
1515
"mcc",
16+
is_preview=True,
1617
)
1718
class __CMDGroup(AAZCommandGroup):
1819
"""Microsoft Connected Cache CLI Commands

src/mcc/azext_mcc/aaz/latest/mcc/ent/__cmd_group.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313

1414
@register_command_group(
1515
"mcc ent",
16+
is_preview=True,
1617
)
1718
class __CMDGroup(AAZCommandGroup):
1819
"""Microsoft Connected Cache for Enterprise CLI commands

src/mcc/azext_mcc/aaz/latest/mcc/ent/node/__cmd_group.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313

1414
@register_command_group(
1515
"mcc ent node",
16+
is_preview=True,
1617
)
1718
class __CMDGroup(AAZCommandGroup):
1819
"""Microsoft Connected Cache for Enterprise cache node CLI commands

src/mcc/azext_mcc/aaz/latest/mcc/ent/node/_create.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313

1414
@register_command(
1515
"mcc ent node create",
16+
is_preview=True,
1617
)
1718
class Create(AAZCommand):
1819
"""Creates a Microsoft Connected Cache for Enterprise cache node with specified parameters.
@@ -47,7 +48,7 @@ def _build_arguments_schema(cls, *args, **kwargs):
4748
help="Name of Microsoft Connected Cache for Enterprise cache node.",
4849
required=True,
4950
fmt=AAZStrArgFormat(
50-
pattern="^[a-zA-Z0-9\_\-]*",
51+
pattern="^[a-zA-Z0-9\\_\\-]*",
5152
max_length=90,
5253
min_length=1,
5354
),
@@ -57,7 +58,7 @@ def _build_arguments_schema(cls, *args, **kwargs):
5758
help="Name of Microsoft Connected Cache for Enterprise resource.",
5859
required=True,
5960
fmt=AAZStrArgFormat(
60-
pattern="^[a-zA-Z0-9\_\-]*",
61+
pattern="^[a-zA-Z0-9\\_\\-]*",
6162
max_length=90,
6263
min_length=1,
6364
),

src/mcc/azext_mcc/aaz/latest/mcc/ent/node/_delete.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313

1414
@register_command(
1515
"mcc ent node delete",
16+
is_preview=True,
1617
confirmation="Are you sure you want to perform this operation?",
1718
)
1819
class Delete(AAZCommand):
@@ -49,7 +50,7 @@ def _build_arguments_schema(cls, *args, **kwargs):
4950
required=True,
5051
id_part="child_name_1",
5152
fmt=AAZStrArgFormat(
52-
pattern="^[a-zA-Z0-9\_\-]*",
53+
pattern="^[a-zA-Z0-9\\_\\-]*",
5354
max_length=90,
5455
min_length=1,
5556
),
@@ -60,7 +61,7 @@ def _build_arguments_schema(cls, *args, **kwargs):
6061
required=True,
6162
id_part="name",
6263
fmt=AAZStrArgFormat(
63-
pattern="^[a-zA-Z0-9\_\-]*",
64+
pattern="^[a-zA-Z0-9\\_\\-]*",
6465
max_length=90,
6566
min_length=1,
6667
),

src/mcc/azext_mcc/aaz/latest/mcc/ent/node/_get_provisioning_details.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313

1414
@register_command(
1515
"mcc ent node get-provisioning-details",
16+
is_preview=True,
1617
)
1718
class GetProvisioningDetails(AAZCommand):
1819
"""Retrieves Microsoft Connected Cache for Enterprise cache node details and keys needed to provision cache node.
@@ -47,7 +48,7 @@ def _build_arguments_schema(cls, *args, **kwargs):
4748
required=True,
4849
id_part="child_name_1",
4950
fmt=AAZStrArgFormat(
50-
pattern="^[a-zA-Z0-9\_\-]*",
51+
pattern="^[a-zA-Z0-9\\_\\-]*",
5152
max_length=90,
5253
min_length=1,
5354
),
@@ -58,7 +59,7 @@ def _build_arguments_schema(cls, *args, **kwargs):
5859
required=True,
5960
id_part="name",
6061
fmt=AAZStrArgFormat(
61-
pattern="^[a-zA-Z0-9\_\-]*",
62+
pattern="^[a-zA-Z0-9\\_\\-]*",
6263
max_length=90,
6364
min_length=1,
6465
),

src/mcc/azext_mcc/aaz/latest/mcc/ent/node/_list.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313

1414
@register_command(
1515
"mcc ent node list",
16+
is_preview=True,
1617
)
1718
class List(AAZCommand):
1819
"""Retrieves relevant information about all Microsoft Connected Cache for Enterprise cache nodes under the Microsoft Connected Cache for Enterprise resource.
@@ -47,7 +48,7 @@ def _build_arguments_schema(cls, *args, **kwargs):
4748
help="Name of Microsoft Connected Cache for Enterprise resource.",
4849
required=True,
4950
fmt=AAZStrArgFormat(
50-
pattern="^[a-zA-Z0-9\_\-]*",
51+
pattern="^[a-zA-Z0-9\\_\\-]*",
5152
max_length=90,
5253
min_length=1,
5354
),

src/mcc/azext_mcc/aaz/latest/mcc/ent/node/_show.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313

1414
@register_command(
1515
"mcc ent node show",
16+
is_preview=True,
1617
)
1718
class Show(AAZCommand):
1819
"""Retrieves relevant information for a Microsoft Connected Cache for Enterprise cache node.
@@ -47,7 +48,7 @@ def _build_arguments_schema(cls, *args, **kwargs):
4748
required=True,
4849
id_part="child_name_1",
4950
fmt=AAZStrArgFormat(
50-
pattern="^[a-zA-Z0-9\_\-]*",
51+
pattern="^[a-zA-Z0-9\\_\\-]*",
5152
max_length=90,
5253
min_length=1,
5354
),
@@ -58,7 +59,7 @@ def _build_arguments_schema(cls, *args, **kwargs):
5859
required=True,
5960
id_part="name",
6061
fmt=AAZStrArgFormat(
61-
pattern="^[a-zA-Z0-9\_\-]*",
62+
pattern="^[a-zA-Z0-9\\_\\-]*",
6263
max_length=90,
6364
min_length=1,
6465
),

src/mcc/azext_mcc/aaz/latest/mcc/ent/node/_update.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313

1414
@register_command(
1515
"mcc ent node update",
16+
is_preview=True,
1617
)
1718
class Update(AAZCommand):
1819
"""Configures a Microsoft Connected Cache for Enterprise cache node with specified configuration parameters.
@@ -50,7 +51,7 @@ def _build_arguments_schema(cls, *args, **kwargs):
5051
required=True,
5152
id_part="child_name_1",
5253
fmt=AAZStrArgFormat(
53-
pattern="^[a-zA-Z0-9\_\-]*",
54+
pattern="^[a-zA-Z0-9\\_\\-]*",
5455
max_length=90,
5556
min_length=1,
5657
),
@@ -61,7 +62,7 @@ def _build_arguments_schema(cls, *args, **kwargs):
6162
required=True,
6263
id_part="name",
6364
fmt=AAZStrArgFormat(
64-
pattern="^[a-zA-Z0-9\_\-]*",
65+
pattern="^[a-zA-Z0-9\\_\\-]*",
6566
max_length=90,
6667
min_length=1,
6768
),

src/mcc/azext_mcc/aaz/latest/mcc/ent/node/_wait.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def _build_arguments_schema(cls, *args, **kwargs):
4646
required=True,
4747
id_part="child_name_1",
4848
fmt=AAZStrArgFormat(
49-
pattern="^[a-zA-Z0-9\_\-]*",
49+
pattern="^[a-zA-Z0-9\\_\\-]*",
5050
max_length=90,
5151
min_length=1,
5252
),
@@ -57,7 +57,7 @@ def _build_arguments_schema(cls, *args, **kwargs):
5757
required=True,
5858
id_part="name",
5959
fmt=AAZStrArgFormat(
60-
pattern="^[a-zA-Z0-9\_\-]*",
60+
pattern="^[a-zA-Z0-9\\_\\-]*",
6161
max_length=90,
6262
min_length=1,
6363
),

0 commit comments

Comments
 (0)