|
|
|
@ -92,6 +92,7 @@ options:
|
|
|
|
has reached its maximum value will return an error. False (NO CYCLE) is
|
|
|
|
has reached its maximum value will return an error. False (NO CYCLE) is
|
|
|
|
the default.
|
|
|
|
the default.
|
|
|
|
type: bool
|
|
|
|
type: bool
|
|
|
|
|
|
|
|
default: no
|
|
|
|
cascade:
|
|
|
|
cascade:
|
|
|
|
description:
|
|
|
|
description:
|
|
|
|
- Automatically drop objects that depend on the sequence, and in turn all
|
|
|
|
- Automatically drop objects that depend on the sequence, and in turn all
|
|
|
|
@ -99,6 +100,7 @@ options:
|
|
|
|
- Ignored if I(state=present).
|
|
|
|
- Ignored if I(state=present).
|
|
|
|
- Only used with I(state=absent).
|
|
|
|
- Only used with I(state=absent).
|
|
|
|
type: bool
|
|
|
|
type: bool
|
|
|
|
|
|
|
|
default: no
|
|
|
|
rename_to:
|
|
|
|
rename_to:
|
|
|
|
description:
|
|
|
|
description:
|
|
|
|
- The new name for the I(sequence).
|
|
|
|
- The new name for the I(sequence).
|
|
|
|
@ -471,9 +473,9 @@ def main():
|
|
|
|
maxvalue=dict(type='int', aliases=['max']),
|
|
|
|
maxvalue=dict(type='int', aliases=['max']),
|
|
|
|
start=dict(type='int'),
|
|
|
|
start=dict(type='int'),
|
|
|
|
cache=dict(type='int'),
|
|
|
|
cache=dict(type='int'),
|
|
|
|
cycle=dict(type='bool'),
|
|
|
|
cycle=dict(type='bool', default=False),
|
|
|
|
schema=dict(type='str', default='public'),
|
|
|
|
schema=dict(type='str', default='public'),
|
|
|
|
cascade=dict(type='bool'),
|
|
|
|
cascade=dict(type='bool', default=False),
|
|
|
|
rename_to=dict(type='str'),
|
|
|
|
rename_to=dict(type='str'),
|
|
|
|
owner=dict(type='str'),
|
|
|
|
owner=dict(type='str'),
|
|
|
|
newschema=dict(type='str'),
|
|
|
|
newschema=dict(type='str'),
|
|
|
|
|