Skip to content

Commit

Permalink
sanity fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mandar242 committed May 22, 2024
1 parent f382af7 commit 5e473a1
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions plugins/modules/backup_plan.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
rules:
description:
- An array of BackupRule objects, each of which specifies a scheduled task that is used to back up a selection of resources.
- Required when O(state=present).
- Required when o(state=present).
type: list
elements: dict
suboptions:
Expand Down Expand Up @@ -83,7 +83,7 @@
delete_after_days:
description: Specifies the number of days after creation that a recovery
point is deleted. Must be greater than V(90) days plus
O(rules.lifecycle.move_to_cold_storage_after_days).
o(rules.lifecycle.move_to_cold_storage_after_days).
type: int
recovery_point_tags:
description: To help organize your resources, you can assign your own metadata to the resources that you create.
Expand Down Expand Up @@ -115,7 +115,7 @@
delete_after_days:
description: Specifies the number of days after creation that a
recovery point is deleted. Must be greater than V(90) days plus
O(rules.copy_actions.lifecycle.move_to_cold_storage_after_days).
o(rules.copy_actions.lifecycle.move_to_cold_storage_after_days).
type: int
enable_continuous_backup:
description:
Expand Down Expand Up @@ -276,7 +276,7 @@
description:
- Defines when a protected resource is transitioned to cold storage and when it expires.
type: dict
returned: when O(rules.lifecycle) configured
returned: when o(rules.lifecycle) configured
sample: {
"delete_after_days": 100,
"move_to_cold_storage_after_days": 10
Expand All @@ -286,7 +286,7 @@
- An array of key-value pair strings that are assigned to resources that are associated with
this rule when restored from backup.
type: dict
returned: when O(rules.recovery_point_tags) configured
returned: when o(rules.recovery_point_tags) configured
sample: {
"Tagkey1": "TagValue1",
"Tagkey2": "TagValue2"
Expand All @@ -299,7 +299,7 @@
sample: "973621ef-d863-41ef-b5c3-9e943a64ad0c"
copy_actions:
description: An array of CopyAction objects, which contains the details of the copy operation.
returned: when O(rules.copy_actions) configured
returned: when o(rules.copy_actions) configured
type: list
elements: dict
sample: [
Expand Down
6 changes: 3 additions & 3 deletions plugins/modules/backup_plan_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@
description:
- Defines when a protected resource is transitioned to cold storage and when it expires.
type: dict
returned: when O(rules.lifecycle) configured
returned: when o(rules.lifecycle) configured
sample: {
"delete_after_days": 100,
"move_to_cold_storage_after_days": 10
Expand All @@ -165,7 +165,7 @@
- An array of key-value pair strings that are assigned to resources that are associated with
this rule when restored from backup.
type: dict
returned: when O(rules.recovery_point_tags) configured
returned: when o(rules.recovery_point_tags) configured
sample: {
"Tagkey1": "TagValue1",
"Tagkey2": "TagValue2"
Expand All @@ -178,7 +178,7 @@
sample: "973621ef-d863-41ef-b5c3-9e943a64ad0c"
copy_actions:
description: An array of CopyAction objects, which contains the details of the copy operation.
returned: when O(rules.copy_actions) configured
returned: when o(rules.copy_actions) configured
type: list
elements: dict
sample: [
Expand Down

0 comments on commit 5e473a1

Please sign in to comment.