summaryrefslogtreecommitdiff
path: root/lib/ansible/plugins
diff options
context:
space:
mode:
authorAnsible Core Team <info@ansible.com>2020-03-09 09:40:31 +0000
committerAnsible Core Team <info@ansible.com>2020-03-09 09:40:31 +0000
commitab5942a760c399a1b3a47e6afaf38cac44522be9 (patch)
treee5d867c7a75f5e2aa55582534f04c1229d48c229 /lib/ansible/plugins
parent7d65b281899668aff08e78c12aeceb13b15d2d97 (diff)
downloadansible-ab5942a760c399a1b3a47e6afaf38cac44522be9.tar.gz
Migrated to servicenow.servicenow
Diffstat (limited to 'lib/ansible/plugins')
-rw-r--r--lib/ansible/plugins/doc_fragments/service_now.py48
1 files changed, 0 insertions, 48 deletions
diff --git a/lib/ansible/plugins/doc_fragments/service_now.py b/lib/ansible/plugins/doc_fragments/service_now.py
deleted file mode 100644
index e890778da7..0000000000
--- a/lib/ansible/plugins/doc_fragments/service_now.py
+++ /dev/null
@@ -1,48 +0,0 @@
-# -*- coding: utf-8 -*-
-# Copyright: (c) 2019, Ansible Project
-# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
-
-from __future__ import absolute_import, division, print_function
-__metaclass__ = type
-
-
-class ModuleDocFragment(object):
- # Parameters for Service Now modules
- DOCUMENTATION = r'''
-options:
- instance:
- description:
- - The ServiceNow instance name, without the domain, service-now.com.
- - If the value is not specified in the task, the value of environment variable C(SN_INSTANCE) will be used instead.
- - Environment variable support added in Ansible 2.9.
- required: false
- type: str
- username:
- description:
- - Name of user for connection to ServiceNow.
- - Required whether using Basic or OAuth authentication.
- - If the value is not specified in the task, the value of environment variable C(SN_USERNAME) will be used instead.
- - Environment variable support added in Ansible 2.9.
- required: false
- type: str
- password:
- description:
- - Password for username.
- - Required whether using Basic or OAuth authentication.
- - If the value is not specified in the task, the value of environment variable C(SN_PASSWORD) will be used instead.
- - Environment variable support added in Ansible 2.9.
- required: false
- type: str
- client_id:
- description:
- - Client ID generated by ServiceNow.
- required: false
- version_added: "2.9"
- type: str
- client_secret:
- description:
- - Client Secret associated with client id.
- required: false
- version_added: "2.9"
- type: str
-'''