azext_iot/central/params.py [484:522]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        )
        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"],
            default="number",
            help="Whether the cancellation threshold applies per-batch or to the overall job.",
        )
        context.argument(
            "description",
            type=str,
            options_list=["--description", "--desc"],
            help="Detailed description of the job.",
        )
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



azext_iot/central/params.py [771:809]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        )
        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"],
            default="number",
            help="Whether the cancellation threshold applies per-batch or to the overall job.",
        )
        context.argument(
            "description",
            type=str,
            options_list=["--description", "--desc"],
            help="Detailed description of the job.",
        )
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



