diff --git a/src/redisenterprise/azext_redisenterprise/_params.py b/src/redisenterprise/azext_redisenterprise/_params.py index 5d5a80380c5..7cd87baaaea 100644 --- a/src/redisenterprise/azext_redisenterprise/_params.py +++ b/src/redisenterprise/azext_redisenterprise/_params.py @@ -66,7 +66,7 @@ def load_arguments(self, _): arg_group='KeyEncryptionKeyIdentity') c.argument('user_assigned_identity_resource_id', options_list=['--user-assigned-identity-resource-id', '--identity-resource-id'], type=str, help='User assigned identity to use for accessing key encryption key Url. ' - 'Ex: /subscriptions//resourceGroups//providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId.', + 'Ex: `/subscriptions//resourceGroups//providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId`.', arg_group='KeyEncryptionKeyIdentity') c.argument('user_assigned_identities', options_list=['--user-assigned-identities', '--assigned-identities'], type=validate_file_or_dict, help='The set of user assigned identities associated with the resource. ' @@ -124,7 +124,7 @@ def load_arguments(self, _): arg_group='KeyEncryptionKeyIdentity') c.argument('user_assigned_identity_resource_id', options_list=['--user-assigned-identity-resource-id', '--identity-resource-id'], type=str, help='User assigned identity to use for accessing key encryption key Url. ' - 'Ex: /subscriptions//resourceGroups//providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId.', + 'Ex: `/subscriptions//resourceGroups//providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId`.', arg_group='KeyEncryptionKeyIdentity') c.argument('user_assigned_identities', options_list=['--user-assigned-identities', '--assigned-identities'], type=validate_file_or_dict, help='The set of user assigned identities associated with the resource. ' diff --git a/src/redisenterprise/azext_redisenterprise/aaz/latest/redisenterprise/_create.py b/src/redisenterprise/azext_redisenterprise/aaz/latest/redisenterprise/_create.py index 4753d91f83a..3a6eb7b3945 100644 --- a/src/redisenterprise/azext_redisenterprise/aaz/latest/redisenterprise/_create.py +++ b/src/redisenterprise/azext_redisenterprise/aaz/latest/redisenterprise/_create.py @@ -95,7 +95,7 @@ def _build_arguments_schema(cls, *args, **kwargs): _args_schema.user_assigned_identity_resource_id = AAZStrArg( options=["--identity-resource-id", "--user-assigned-identity-resource-id"], arg_group="KeyEncryptionKeyIdentity", - help="User assigned identity to use for accessing key encryption key Url. Ex: /subscriptions//resourceGroups//providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId.", + help="User assigned identity to use for accessing key encryption key Url. Ex: `/subscriptions//resourceGroups//providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId`.", ) # define Arg Group "Parameters" diff --git a/src/redisenterprise/azext_redisenterprise/aaz/latest/redisenterprise/_update.py b/src/redisenterprise/azext_redisenterprise/aaz/latest/redisenterprise/_update.py index 7a74cb399b3..50d9f20b9d7 100644 --- a/src/redisenterprise/azext_redisenterprise/aaz/latest/redisenterprise/_update.py +++ b/src/redisenterprise/azext_redisenterprise/aaz/latest/redisenterprise/_update.py @@ -102,7 +102,7 @@ def _build_arguments_schema(cls, *args, **kwargs): _args_schema.user_assigned_identity_resource_id = AAZStrArg( options=["--identity-resource-id", "--user-assigned-identity-resource-id"], arg_group="KeyEncryptionKeyIdentity", - help="User assigned identity to use for accessing key encryption key Url. Ex: /subscriptions//resourceGroups//providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId.", + help="User assigned identity to use for accessing key encryption key Url. Ex: `/subscriptions//resourceGroups//providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId`.", nullable=True, )