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

Clarify ops ordering based on ansible 0.6.0 #178

Merged
merged 1 commit into from
Dec 6, 2024
Merged
Show file tree
Hide file tree
Changes from all 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
4 changes: 2 additions & 2 deletions docs/ansible/collection/config.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,9 +114,9 @@ In the example below, the module is stuffed with multiple updates, replaces and

Config module uses JSON-RPC interface of SR Linux, and in particular, its [`Set` method](../../tutorials/programmability/json-rpc/basics.md#set). Upon receiving the Set method, SR Linux opens a private named candidate configuration and applies the operations in the following order:

1. updates
1. deletes
2. replaces
3. deletes
3. updates

Note, that the operations that are part of the module's task are not committed independently, they are applied strictly together in the "all or nothing" fashion. When we say that the operations are applied in that order, we mean that changes get applied to the candidate configuration in that order. No commit happens just yet.

Expand Down
2 changes: 1 addition & 1 deletion docs/blog/posts/2023/ansible-collection.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ In this blog post, we would like to share some details about our design decision

## Deficiencies of the URI module

The URI module is a great tool for making REST API calls. It is very flexible, generic and can be used to make any type of HTTP/RESTAPI calls. However, its generic nature can also be seen as a drawback.
The URI module is a great tool for making REST API calls. It is very flexible, generic and can be used to make any type of HTTP/REST API calls. However, its generic nature can also be seen as a drawback.

### Verbosity

Expand Down