Skip to content

Commit

Permalink
Changed all attributes to type string
Browse files Browse the repository at this point in the history
  • Loading branch information
ReissJJarvis05 committed Mar 16, 2021
1 parent 8e0766c commit 0bef584
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions plugins/modules/uptime_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,32 +40,32 @@
- The type of check taking place must be specified as a string (e.g. http, tcp, ping).
tags:
required: false
type : array
type : string
description:
- Tags can be added to an uptime check to make them more organized and discoverable in the user interface. This attribute takes an array of strings where each tag must have a maximum length of 64 characters.
timing:
required: false
type: integer
type: string
description:
- The user can specify the number of minutes between each check. This attribute takes an integer, but defaults to 5 if not specified.
port:
required: false
type: integer
type: string
description:
- A specific port number can be targetted on the destination URL by setting setting the port number as an integer.
encryption:
required: false
type: bool
type: string
description:
- The user can specify whether the uptime check uses encryption. This attribute takes a boolean (True or False), but defaults to False if not specified.
verify_certificate:
required: false
type: bool
type: string
description:
- An uptime check can treat the target site as down if it has an invalid or unverifiable certificate if the boolean verify_certificate attribute is set to True. If not specified, this attribute defaults to False.
probe_filters:
required: false
type: array
type: string
description:
- The user can specify filters used for probe selection as an array of strings. Currently only region is supported (e.g. region:EU)
shouldcontain:
Expand All @@ -75,7 +75,7 @@
- The uptime check will only determine that the target site is up if it contains a specified string.
integrationids:
required: false
type: array
type: string
description:
- The user can connect integrations which have been set up in the UI to the uptime check by specifying the integration IDs as a list of integers.
url:
Expand All @@ -85,7 +85,7 @@
- A path on the destination server can be set for the uptime check to target. This is taken as a string.
pause:
required: false
type: bool
type: string
description:
- This attribute takes a boolean (True/False). If set to True, the created uptime check will not automatically run immediately. If not specified, this attribute defaults to False.
notes:
Expand Down

0 comments on commit 0bef584

Please sign in to comment.