
    Vh	                         d Z dZdZy)a|  
---
module: agent_job
short_description: Configures a SQL Agent job
description:
  - Configure a SQL Agent job, including which schedules and category it belongs to.
version_added: 0.1.0
options:
  job:
    description:
      - The name of the target SQL Agent job.
    type: str
    required: true
  description:
    description:
      - Description for the SQL Agent job.
    type: str
    required: false
  category:
    description:
      - Category for the target SQL Agent job. Must already exist.
    type: str
    required: false
  enabled:
    description:
      - Whether the SQL Agent job should be enabled or disabled.
    type: bool
    required: false
    default: true
    version_added: '0.4.0'
  owner_login:
    description:
      - The owning login for the database. Will default to the current user if
        the database is being created and none supplied.
    type: str
    required: false
  start_step_id:
    description:
      - What step number the job should begin with when run.
    type: int
    required: false
  schedule:
    description:
      - The name of the schedule the job should be associated with. Only one schedule per job is supported.
    type: str
    required: false
  force:
    description:
      - If I(force=true), any job categories will be created if they don't exist already.
    type: bool
    default: false
author: "John McCall (@lowlydba)"
notes:
  - On slower hardware, stale job component data may be returned (i.e., a previous or default job category).
    Configuring each component (schedule, step, category, etc.) individually is recommended for this reason.
requirements:
  - L(dbatools,https://www.powershellgallery.com/packages/dbatools/) PowerShell module
extends_documentation_fragment:
  - lowlydba.sqlserver.sql_credentials
  - lowlydba.sqlserver.attributes.check_mode
  - lowlydba.sqlserver.attributes.platform_all
  - lowlydba.sqlserver.state
zv
- name: Create a job
  lowlydba.sqlserver.agent_job:
    sql_instance: sql-01.myco.io
    job: MyJob
    force: true
z
data:
  description: Output from the C(New-DbaAgentJob), C(Set-DbaAgentJob), or C(Remove-DbaAgentJob) function.
  returned: success, but not in check_mode.
  type: dict
N)DOCUMENTATIONEXAMPLESRETURN     p/home/dcms/DCMS/lib/python3.12/site-packages/ansible_collections/lowlydba/sqlserver/plugins/modules/agent_job.py<module>r      s   >@
r   