azext_iot/central/params.py [751:800]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        context.argument(
            "job_name",
            options_list=["--job-name"],
            help="Display name of the job.",
        )
        context.argument(
            "group_id",
            options_list=["--group-id", "-g"],
            help="The ID of the device group on which to execute the job",
        )
        context.argument(
            "schedule",
            options_list=["--schedule"],
            help="The schedule at which to execute the job. Provide path to JSON file or raw stringified JSON."
        )
        context.argument(
            "content",
            options_list=["--content", "-k"],
            help="The job data definition. Provide path to JSON file or raw stringified JSON."
            " The request body must contain array of JobData.",
        )
        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 [823:872]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        context.argument(
            "job_name",
            options_list=["--job-name"],
            help="Display name of the job.",
        )
        context.argument(
            "group_id",
            options_list=["--group-id", "-g"],
            help="The ID of the device group on which to execute the job",
        )
        context.argument(
            "schedule",
            options_list=["--schedule"],
            help="The schedule at which to execute the job. Provide path to JSON file or raw stringified JSON."
        )
        context.argument(
            "content",
            options_list=["--content", "-k"],
            help="The job data definition. Provide path to JSON file or raw stringified JSON."
            " The request body must contain array of JobData.",
        )
        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"],
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



