azext_iot/central/params.py [484:513]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        )
        context.argument(
            "batch_type",
            options_list=["--batch-type", "--bt"],
            arg_type=get_enum_type(JobBatchType),
            default="number",
            help="Specify if batching is done on a number of devices or a percentage of the total.",
        )
        context.argument(
            "batch",
            type=int,
            options_list=["--batch", "-b"],
            help="The number or percentage of devices on which batching is done.",
        )
        context.argument(
            "threshold",
            type=int,
            options_list=["--cancellation-threshold", "--cth"],
            help="The number or percentage of devices on which the cancellation threshold is applied.",
        )
        context.argument(
            "threshold_type",
            options_list=["--cancellation-threshold-type", "--ctt"],
            arg_type=get_enum_type(JobBatchType),
            default="number",
            help="Specify if cancellation threshold applies for a number of devices or a percentage of the total.",
        )
        context.argument(
            "threshold_batch",
            options_list=["--cancellation-threshold-batch", "--ctb"],
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



azext_iot/central/params.py [843:872]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        )
        context.argument(
            "batch_type",
            options_list=["--batch-type", "--bt"],
            arg_type=get_enum_type(JobBatchType),
            default="number",
            help="Specify if batching is done on a number of devices or a percentage of the total.",
        )
        context.argument(
            "batch",
            type=int,
            options_list=["--batch", "-b"],
            help="The number or percentage of devices on which batching is done.",
        )
        context.argument(
            "threshold",
            type=int,
            options_list=["--cancellation-threshold", "--cth"],
            help="The number or percentage of devices on which the cancellation threshold is applied.",
        )
        context.argument(
            "threshold_type",
            options_list=["--cancellation-threshold-type", "--ctt"],
            arg_type=get_enum_type(JobBatchType),
            default="number",
            help="Specify if cancellation threshold applies for a number of devices or a percentage of the total.",
        )
        context.argument(
            "threshold_batch",
            options_list=["--cancellation-threshold-batch", "--ctb"],
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



