Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

enable passed one-time scheduled actions to be rescheduled #455

Merged
merged 6 commits into from
Dec 9, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG_PENDING.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,6 @@

### Bug Fixes

- Updating the timestamp of a one-time schedule will now cause a replacement, allowing schedules that have already run to be rescheduled correctly: [#455](https://github.com/pulumi/pulumi-pulumiservice/pull/455)

### Miscellaneous
12 changes: 8 additions & 4 deletions provider/cmd/pulumi-resource-pulumiservice/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -1254,7 +1254,8 @@
},
"timestamp": {
"description": "The time at which the schedule should run, in ISO 8601 format. Eg: 2020-01-01T00:00:00Z. If you are supplying this, do not supply scheduleCron.",
"type": "string"
"type": "string",
"replaceOnChanges": true
},
"pulumiOperation": {
"description": "Which operation to run.",
Expand Down Expand Up @@ -1291,7 +1292,8 @@
},
"timestamp": {
"description": "The time at which the schedule should run, in ISO 8601 format. Eg: 2020-01-01T00:00:00Z. If you are supplying this, do not supply scheduleCron.",
"type": "string"
"type": "string",
"replaceOnChanges": true
},
"pulumiOperation": {
"description": "Which command to run.",
Expand Down Expand Up @@ -1388,7 +1390,8 @@
},
"timestamp": {
"description": "The time at which the schedule should run, in ISO 8601 format. Eg: 2020-01-01T00:00:00Z.",
"type": "string"
"type": "string",
"replaceOnChanges": true
},
"deleteAfterDestroy": {
"description": "True if the stack and all associated history and settings should be deleted.",
Expand Down Expand Up @@ -1422,7 +1425,8 @@
},
"timestamp": {
"description": "The time at which the schedule should run, in ISO 8601 format. Eg: 2020-01-01T00:00:00Z.",
"type": "string"
"type": "string",
"replaceOnChanges": true
},
"deleteAfterDestroy": {
"description": "True if the stack and all associated history and settings should be deleted.",
Expand Down
4 changes: 4 additions & 0 deletions sdk/dotnet/DeploymentSchedule.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions sdk/dotnet/TtlSchedule.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions sdk/go/pulumiservice/deploymentSchedule.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions sdk/go/pulumiservice/ttlSchedule.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions sdk/nodejs/deploymentSchedule.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions sdk/nodejs/ttlSchedule.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions sdk/python/pulumi_pulumiservice/deployment_schedule.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions sdk/python/pulumi_pulumiservice/ttl_schedule.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading